MovedFileOut

This commit is contained in:
DaWilliam 2018-03-03 21:53:39 -05:00
parent f4e58a9de3
commit 6128d1ea3b

15
Jenkinsfile vendored Normal file
View file

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