simple-python-pyinstaller-app/Jenkinsfile
kudlaty e9d274845e feature/jenkinsfile
first version of Jenkinsfile
2018-03-21 11:08:48 +01:00

16 lines
No EOL
313 B
Groovy

pipeline{
agent none
stages {
stage('Build'){
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
}
}
}
}