Epoch/Jenkinsfile

16 lines
212 B
Plaintext
Raw Normal View History

2017-04-06 03:18:10 +00:00
pipeline {
agent none
stages {
2017-04-06 03:54:32 +00:00
stage('Checkout') {
2017-04-06 03:18:10 +00:00
steps {
2017-04-06 03:54:32 +00:00
node(label: 'Checkout') {
script {
checkout scm
}
2017-04-06 03:23:31 +00:00
}
2017-04-06 03:18:10 +00:00
}
}
}
}