Epoch/Jenkinsfile
2017-04-09 13:59:47 -07:00

16 lines
248 B
Groovy

pipeline {
agent any
stages {
stage('checkout') {
steps {
fileExists 'DOESNOTEXIST.exe'
fileExists 'README.md'
}
}
stage('Release') {
steps {
bat 'C:/GITTEMP/release.cmd'
}
}
}
}