diff --git a/Jenkinsfile b/Jenkinsfile index f90cc49..02673ed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,11 +37,7 @@ pipeline { stage('Download dataset and preprocess data') { steps { script { - docker.image('create-dataset-s464863').withRun( - "-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", - "-e KAGGLE_KEY=${params.KAGGLE_KEY}", - "-e CUTOFF=${params.CUTOFF}" - ) { + docker.image('create-dataset-s464863').withRun('"-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME}"','"-e KAGGLE_KEY=${params.KAGGLE_KEY}"','"-e CUTOFF=${params.CUTOFF}"') { sh "chmod +x ./download_dataset.py" sh "python3 ./download_dataset.py ${params.CUTOFF}" archiveArtifacts artifacts: 'datasets/*', onlyIfSuccessful: true