Epoch/Jenkinsfile

19 lines
302 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-06 16:57:39 +00:00
stage('release') {
steps {
2017-04-09 20:15:32 +00:00
node(label: 'testing') {
2017-04-06 17:13:49 +00:00
bat 'C:/GITTEMP/release.cmd'
2017-04-06 13:36:06 +00:00
}
2017-04-09 20:15:32 +00:00
2017-04-06 03:18:10 +00:00
}
}
}
2017-04-09 20:15:32 +00:00
}