fix jenkins

This commit is contained in:
filnow 2024-03-26 21:28:20 +01:00
parent d6205031b9
commit e330b1d230

5
Jenkinsfile vendored
View File

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