diff --git a/jenkins/Jenkinsfile.txt b/jenkins/Jenkinsfile.txt new file mode 100644 index 000000000..f3f838b86 --- /dev/null +++ b/jenkins/Jenkinsfile.txt @@ -0,0 +1,11 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + sh 'python -m py_compile sources/add2vals.py sources/calc.py' + stash(name: 'compiled-results', includes: 'sources/*.py*') + } + } + } +}