diff --git a/Jenkinsfile b/Jenkinsfile index b09102c..94bb3ea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,16 +1,28 @@ node { - def img - stage('Preparation') { // for display purposes - img = docker.build('ium-helloworld') - } - stage('Train') { + def img + stage("Properties"){ + properties([ + [$class: 'GogsTrigger'], + pipelineTriggers([pollSCM('')]) + ]) + } + + stage("Checkout"){ + git 'https://git.wmi.amu.edu.pl/tzietkiewicz/ium-helloworld.git' + } + + stage('Environment') { // for display purposes + img = docker.build('ium-helloworld') + } + + stage('Train') { img.inside('-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns ') { sh 'ls -l /tmp/mlruns' sh 'ls -l /mlruns' sh './train.py' sh 'ls -l /tmp/mlruns' sh 'ls -l /mlruns' - } + } } }