Add Jenkinsfile

This commit is contained in:
Reese
2019-12-13 18:13:57 +00:00
commit 6bd1a3527c

10
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version && echo hello'
}
}
}
}