Epoch/Jenkinsfile

16 lines
248 B
Plaintext
Raw Normal View History

2017-04-06 03:18:10 +00:00
pipeline {
2017-04-09 20:15:32 +00:00
agent any
2017-04-06 03:18:10 +00:00
stages {
2017-04-06 15:05:59 +00:00
stage('checkout') {
2017-04-06 03:18:10 +00:00
steps {
2017-04-09 20:21:59 +00:00
fileExists 'DOESNOTEXIST.exe'
fileExists 'README.md'
2017-04-06 17:13:49 +00:00
}
}
2017-04-09 20:59:47 +00:00
stage('Release') {
2017-04-06 16:57:39 +00:00
steps {
2017-04-09 20:59:47 +00:00
bat 'C:/GITTEMP/release.cmd'
2017-04-06 03:18:10 +00:00
}
}
}
2017-04-09 20:15:32 +00:00
}