updated data download

This commit is contained in:
s464953 2024-05-08 21:29:45 +02:00
parent 6911e5d237
commit 7e92d821eb
1 changed files with 18 additions and 2 deletions

20
Jenkinsfile vendored
View File

@ -19,6 +19,22 @@ pipeline {
}
}
}
}
stage('Run Script') {
steps {
script {
withEnv([
"KAGGLE_USERNAME=${env.KAGGLE_USERNAME}",
"KAGGLE_KEY=${env.KAGGLE_KEY}"])
{
sh "bash ./download_dataset.sh"
}
}
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}
}
}
}