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

6
Jenkinsfile vendored
View file

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