Add initial JenkinsFile

This commit is contained in:
Matthew Naurayan -X (mnauraya - ROBERT HALF INTERNATIONAL INC at Cisco) 2019-01-02 15:12:59 -05:00
parent 128e9ba59f
commit 3961f14c7e

15
JenkinsFile 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'
}
}
}
}