Added missing steps block to Jenkinsfile

This commit is contained in:
s444380 2022-03-27 11:56:52 +02:00
parent 9108544552
commit ae8779f171

2
Jenkinsfile vendored
View File

@ -25,6 +25,7 @@ pipeline {
}
}
stage("Download data") {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh "./download_data.sh"
@ -32,4 +33,5 @@ pipeline {
}
}
}
}
}