Create JenkinsFile

This commit is contained in:
joshcmart 2018-05-25 15:40:20 -04:00 committed by GitHub
parent bf125a298a
commit a2ccf6c9b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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