Epoch/Jenkinsfile
2017-04-05 20:47:05 -07:00

13 lines
172 B
Groovy

pipeline {
agent none
stages {
stage('') {
steps {
node(label: 'Stage Checkouts') {
sh 'checkout scm'
}
}
}
}
}