withDockerContainer
This commit is contained in:
parent
67034ce122
commit
6af999f0de
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -1,7 +1,8 @@
|
||||
pipeline {
|
||||
agent {
|
||||
dockerfile {
|
||||
args '-e KAGGLE_USERNAME="${params.KAGGLE_USERNAME}" -e KAGGLE_KEY="${params.KAGGLE_KEY}"'
|
||||
additionalBuildArgs '-t ium'
|
||||
args '-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME} -e KAGGLE_KEY=${params.KAGGLE_KEY}'
|
||||
}
|
||||
}
|
||||
parameters {
|
||||
@ -30,11 +31,13 @@ pipeline {
|
||||
}
|
||||
stage("Download data") {
|
||||
steps {
|
||||
sh "ls"
|
||||
sh "./download_data.sh"
|
||||
sh "python3 clean_and_split_data.py"
|
||||
archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
|
||||
}
|
||||
withDockerContainer('ium'){
|
||||
sh "ls"
|
||||
sh "./download_data.sh"
|
||||
sh "python3 clean_and_split_data.py"
|
||||
archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user