remove withDockerCotnainer

This commit is contained in:
Kamil Guttmann 2022-04-03 20:27:15 +02:00
parent 6af999f0de
commit 2f18822b80

9
Jenkinsfile vendored
View File

@ -31,12 +31,9 @@ pipeline {
} }
stage("Download data") { stage("Download data") {
steps { steps {
withDockerContainer('ium'){ sh "./download_data.sh"
sh "ls" sh "python3 clean_and_split_data.py"
sh "./download_data.sh" archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
sh "python3 clean_and_split_data.py"
archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
}
} }
} }
} }