SocialHelper/Jenkinsfile

10 lines
184 B
Plaintext
Raw Normal View History

2020-12-03 13:53:44 +01:00
pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}