This commit is contained in:
Marcin Kostrzewski 2022-03-27 23:19:42 +02:00
commit fa95822a21

16
Jenkinsfile vendored
View File

@ -13,10 +13,6 @@ pipeline {
name: 'KAGGLE_KEY'
)
}
environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
KAGGLE_KEY="$params.KAGGLE_KEY"
}
stages {
stage('Install dependencies') {
steps {
@ -25,15 +21,11 @@ pipeline {
}
stage('Fetch and split dataset') {
steps {
script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'kaggle datasets list'
}
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh "chmod u+x ./download_dataset.sh"
sh "./download_dataset.sh"
}
sh "chmod u+x ./download_dataset.sh"
sh "./download_dataset.sh"
}
}
}