Epoch/Jenkinsfile
2017-04-06 16:51:41 -05:00

25 lines
483 B
Groovy

pipeline {
agent none
stages {
stage('checkout') {
steps {
node (label: 'testing') {
checkout scm
fileExists ('README.md')
fileExists ('version.txt')
fileExists ('build.txt')
fileExists ('nonexistentFile.txt')
bat 'C:/GITTEMP/build.cmd'
}
}
}
stage('release') {
steps {
node (label: 'testing') {
bat 'C:/GITTEMP/release.cmd'
}
}
}
}
}