Talent.less./Jenkinsfile

15 lines
189 B
Plaintext
Raw Normal View History

2020-12-04 21:42:29 +01:00
2020-12-04 21:55:42 +01:00
2020-12-04 21:42:29 +01:00
pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}