Epoch/Jenkinsfile

14 lines
203 B
Plaintext
Raw Normal View History

2017-04-06 03:18:10 +00:00
pipeline {
agent none
stages {
2017-04-06 15:05:59 +00:00
stage('checkout') {
2017-04-06 03:18:10 +00:00
steps {
2017-04-06 15:13:11 +00:00
node (label: 'testing') {
2017-04-06 15:07:33 +00:00
checkout scm
2017-04-06 13:36:06 +00:00
fileExists 'README.md'
}
2017-04-06 03:18:10 +00:00
}
}
}
2017-04-06 15:07:33 +00:00
}