fix jenkins

This commit is contained in:
filnow 2024-03-26 21:28:20 +01:00
parent d6205031b9
commit e330b1d230
1 changed files with 2 additions and 3 deletions

5
Jenkinsfile vendored
View File

@ -25,15 +25,14 @@ pipeline {
stage('Download Dataset') {
steps {
script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
withEnv(["CUTOFF=${params.CUTOFF}"]) {
sh "bash ./download.sh"
}
}
}
post {
success {
archiveArtifacts artifacts: 'data/**', onlyIfSuccessful: true
archiveArtifacts artifacts: 'data', onlyIfSuccessful: true
}
}
}