From 2f18822b8038a2fe2ac8aaecb79baa5a09e56fae Mon Sep 17 00:00:00 2001 From: Kamil Guttmann Date: Sun, 3 Apr 2022 20:27:15 +0200 Subject: [PATCH] remove withDockerCotnainer --- Jenkinsfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7b73639..0ae257b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,12 +31,9 @@ pipeline { } stage("Download data") { steps { - 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 - } + sh "./download_data.sh" + sh "python3 clean_and_split_data.py" + archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true } } }