calcpymental/Jenkinsfile
2018-10-23 23:10:39 +02:00

15 lines
121 B
Groovy

pipeline {
agent {
docker {
image 'python:3.5.1'
}
}
stages
{
stage('build') {
steps {
sh 'python --version'
}
}
}
}