commented out

This commit is contained in:
DaWilliam 2018-03-03 23:54:45 -05:00 committed by GitHub
parent 64865c06e0
commit 2f51094b11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

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