This commit is contained in:
ulaniuk 2022-04-03 22:04:36 +02:00
parent d975d4fb97
commit 4785ba0f5b

10
Jenkinsfile vendored
View File

@ -1,10 +1,5 @@
pipeline { pipeline {
agent { agent any
dockerfile {
additionalBuildArgs '-t ium'
args '-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME} -e KAGGLE_KEY=${params.KAGGLE_KEY}'
}
}
parameters{ parameters{
password( password(
defaultValue: '', defaultValue: '',
@ -52,8 +47,7 @@ pipeline {
} }
stage("Statistics") { stage("Statistics") {
steps { steps {
sh 'echo "STATISTICS"' sh "python stats.py"
sh "python stats_data.py"
} }
} }
} }