diff --git a/Jenkinsfile.stats b/Jenkinsfile.stats index b53b75c..465e44a 100644 --- a/Jenkinsfile.stats +++ b/Jenkinsfile.stats @@ -1,6 +1,6 @@ pipeline { agent { - dockerfile true + docker { image 'mikolajpokrywka/ium:0.0.0' } } parameters { buildSelector( @@ -22,7 +22,7 @@ pipeline { } stage("Calcualte stats") { steps { - // sh "./stats.sh" + sh "python3 ./script-stats.py" archiveArtifacts artifacts: "stats.txt" } }