Again removed withenv

This commit is contained in:
Kamil Guttmann 2022-04-03 20:09:23 +02:00
parent 1a37703962
commit 26f3ad351a

3
Jenkinsfile vendored
View File

@ -28,8 +28,6 @@ pipeline {
}
stage("Download data") {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh "ls"
sh "./download_data.sh"
sh "python3 clean_and_split_data.py"
@ -37,5 +35,4 @@ pipeline {
}
}
}
}
}