Epoch/Jenkinsfile
2017-04-05 20:54:32 -07:00

16 lines
212 B
Groovy

pipeline {
agent none
stages {
stage('Checkout') {
steps {
node(label: 'Checkout') {
script {
checkout scm
}
}
}
}
}
}