This commit is contained in:
AWieczarek 2024-04-02 22:47:08 +02:00
parent 69a2b51a5a
commit 7f42f1b56e
1 changed files with 8 additions and 7 deletions

9
Jenkinsfile vendored
View File

@ -15,15 +15,16 @@ pipeline {
}
stage('Download, Process, and Split Dataset') {
agent { dockerfile {
args '--build-arg="KAGGLE_KEY=${env.KAGGLE_KEY}" --build-arg="KAGGLE_USERNAME=${env.KAGGLE_USERNAME}"'
}
}
steps {
withEnv([
"KAGGLE_USERNAME=${env.KAGGLE_USERNAME}",
"KAGGLE_KEY=${env.KAGGLE_KEY}"
]) {
agent { dockerfile true}
steps {
sh "python3 IUM_02.py"
}
}
}