ium-helloworld/Jenkinsfile

32 lines
599 B
Plaintext
Raw Normal View History

2021-05-26 21:26:06 +02:00
node {
2021-05-26 21:40:21 +02:00
def img
stage("Properties"){
properties([
2021-05-26 21:41:36 +02:00
pipelineTriggers([
pollSCM(''),
[$class: 'GogsTrigger']
])
2021-05-26 21:40:21 +02:00
])
}
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') {
2021-05-26 21:26:06 +02:00
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'
2021-05-26 21:40:21 +02:00
}
2021-05-26 21:26:06 +02:00
}
}