Add mock build step

This commit is contained in:
admin 2018-05-03 08:11:30 +00:00
parent 27c2705d34
commit be3a3fcc72

16
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,16 @@
pipeline {
agent none
stages {
stage('Build') {
agent {
docker {
image 'docker:latest'
}
}
steps {
sh 'env'
}
}
}
}