ium_464937/Jenkinsfile

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-03-26 17:53:46 +01:00
pipeline {
agent any
2024-03-26 19:21:06 +01:00
parameters {
string(name: 'CUTOFF', defaultValue: '100', description: 'Ilość wierszy do odcięcia')
string(name: 'KAGGLE_USERNAME', defaultValue: '', description: 'Kaggle username')
password(name: 'KAGGLE_KEY', defaultValue: '', description: 'Kaggle API key')
}
2024-03-26 17:53:46 +01:00
stages {
2024-03-26 19:21:06 +01:00
stage('Clone repo') {
steps {
2024-03-26 19:28:59 +01:00
git branch: "main", url: "https://git.wmi.amu.edu.pl/s464937/ium_464937"
2024-03-26 19:21:06 +01:00
}
}
2024-03-26 19:54:59 +01:00
stage('Download and preprocess') {
2024-03-26 19:32:07 +01:00
environment {
KAGGLE_USERNAME = "szymonbartanowicz"
KAGGLE_KEY = "4692239eb65f20ec79f9a59ef30e67eb"
}
2024-03-26 19:21:06 +01:00
steps {
withEnv([
"KAGGLE_USERNAME=${env.KAGGLE_USERNAME}",
"KAGGLE_KEY=${env.KAGGLE_KEY}"
]) {
sh "bash ./script1.sh ${params.CUTOFF}"
}
}
}
2024-03-26 19:54:59 +01:00
stage('Archive') {
2024-03-26 17:53:46 +01:00
steps {
2024-03-26 19:21:06 +01:00
archiveArtifacts artifacts: 'data/*', onlyIfSuccessful: true
2024-03-26 17:53:46 +01:00
}
}
}
2024-03-26 19:22:34 +01:00
}