This commit is contained in:
arpanD93 2021-11-16 01:04:41 +05:30 committed by GitHub
commit 01db5d5251
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
jenkinsfile Normal file
View file

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