SocialHelper/Jenkinsfile

10 lines
184 B
Plaintext
Raw Normal View History

2020-12-03 14:03:08 +01:00
pipeline {
2020-12-03 14:03:29 +01:00
agent { docker { image 'python:3.0.0' } }
2020-12-03 13:58:56 +01:00
stages {
stage('build') {
steps {
sh 'python --version'
}
}
2020-12-03 13:55:48 +01:00
}
2020-12-03 13:53:44 +01:00
}