feature/jenkinsfile

first version of Jenkinsfile
This commit is contained in:
kudlaty 2018-03-21 11:04:07 +01:00
parent 128e9ba59f
commit e9d274845e

16
Jenkinsfile vendored Normal file
View file

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