Epoch/Jenkinsfile
2017-04-06 10:07:33 -05:00

15 lines
211 B
Groovy

pipeline {
agent none
stages {
stage('checkout') {
steps {
node(label: 'testing') {
checkout scm
fileExists 'README.md'
}
}
}
}
}