Added Jenkinsfile

This commit is contained in:
zhengguang 2018-01-05 17:01:43 +08:00
parent 128e9ba59f
commit 297be3414b

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'python:2-alpine'
}
}
stages {
stage('build') {
steps {
sh 'echo "hi"'
}
}
}
}