Epoch/Jenkinsfile

13 lines
172 B
Plaintext
Raw Normal View History

2017-04-05 20:18:10 -07:00
pipeline {
agent none
stages {
2017-04-05 20:47:05 -07:00
stage('') {
2017-04-05 20:18:10 -07:00
steps {
2017-04-05 20:47:05 -07:00
node(label: 'Stage Checkouts') {
sh 'checkout scm'
2017-04-05 20:23:31 -07:00
}
2017-04-05 20:18:10 -07:00
}
}
}
}