Files
testjenkins/Jenkinsfile
2019-12-13 18:13:57 +00:00

10 lines
198 B
Groovy

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