Update 'Jenkinsfile'

This commit is contained in:
Kacper Dudzic 2022-04-02 16:02:15 +02:00
parent a2d5b214a7
commit d45c1c00b0

3
Jenkinsfile vendored
View File

@ -20,6 +20,8 @@ pipeline {
stages {
stage('Stage 1') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'chmod u+x ./download_dataset.sh ./process_dataset.py'
echo 'Downloading dataset...'
sh './download_dataset.sh'
@ -27,6 +29,7 @@ pipeline {
echo 'Processing dataset...'
sh 'python3 process_dataset.py'
echo 'Dataset processed'
}
}
}
}