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 {
agent none
stages {
stage('') {
stage('Checkout') {
steps {
node(label: 'Stage Checkouts') {
sh 'checkout scm'
node(label: 'Checkout') {
script {
checkout scm
}
}
}