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

14 lines
184 B
Groovy

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