Epoch/Jenkinsfile

17 lines
244 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 13:36:06 +00:00
node(label: 'testing') {
2017-04-06 15:05:59 +00:00
script {
checkout scm
}
2017-04-06 13:36:06 +00:00
fileExists 'README.md'
}
2017-04-06 03:18:10 +00:00
}
}
}
}