This commit is contained in:
ulaniuk 2022-04-03 22:26:13 +02:00
parent e93c360f94
commit d10b87b976

8
Jenkinsfile vendored
View File

@ -33,7 +33,12 @@ pipeline {
} }
} }
} }
stage("Dara Preparation") { stage("Build docker") {
steps {
sh 'docker build -t ium .'
}
}
stage("Data Preparation") {
agent { agent {
dockerfile true dockerfile true
} }
@ -53,6 +58,7 @@ pipeline {
sh "chmod u+x ./statistics.sh" sh "chmod u+x ./statistics.sh"
sh "./statistics.sh" sh "./statistics.sh"
archiveArtifacts 'statistics.csv' archiveArtifacts 'statistics.csv'
sh 'docker run --rm ium'
sh "python stats_data.py" sh "python stats_data.py"
} }
} }