echo vars

This commit is contained in:
Kamil Guttmann 2022-04-03 18:54:48 +02:00
parent 688a89bdc3
commit 58103c31dc

7
Jenkinsfile vendored
View File

@ -35,9 +35,10 @@ pipeline {
} }
stage("Download data") { stage("Download data") {
steps { steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", withEnv(['KAGGLE_USERNAME=${params.KAGGLE_USERNAME}',
"KAGGLE_KEY=${params.KAGGLE_KEY}", 'KAGGLE_KEY=${params.KAGGLE_KEY}',
"CUTOFF=${params.CUTOFF}"]) { 'CUTOFF=${params.CUTOFF}']) {
sh "echo $KAGGLE_USERNAME $CUTOFF $IS_DOCKER"
sh "./download_data.sh" sh "./download_data.sh"
sh "python3 clean_and_split_data.py" sh "python3 clean_and_split_data.py"
sh "echo $IS_DOCKER" sh "echo $IS_DOCKER"