This commit is contained in:
vbawol 2017-04-05 20:54:32 -07:00
parent 1839e2af10
commit d7136a92e8

9
Jenkinsfile vendored
View File

@ -1,10 +1,13 @@
pipeline { pipeline {
agent none agent none
stages { stages {
stage('') { stage('Checkout') {
steps { steps {
node(label: 'Stage Checkouts') { node(label: 'Checkout') {
sh 'checkout scm' script {
checkout scm
}
} }
} }