simple-python-pyinstaller-app/Jenkinsfile
2018-01-05 17:01:43 +08:00

15 lines
No EOL
167 B
Groovy

pipeline {
agent {
docker {
image 'python:2-alpine'
}
}
stages {
stage('build') {
steps {
sh 'echo "hi"'
}
}
}
}