Epoch/Jenkinsfile

25 lines
475 B
Plaintext
Raw Normal View History

2017-04-06 03:18:10 +00:00
pipeline {
agent none
stages {
2017-04-06 15:05:59 +00:00
stage('checkout') {
2017-04-06 03:18:10 +00:00
steps {
2017-04-06 15:13:11 +00:00
node (label: 'testing') {
2017-04-06 16:57:39 +00:00
checkout scm
2017-04-06 21:22:37 +00:00
fileExists 'README.md'
2017-04-06 21:27:20 +00:00
fileExists 'version.txt'
fileExists 'build.txt'
2017-04-06 21:30:57 +00:00
fileExists 'nonexistentFile.txt'
2017-04-06 17:13:49 +00:00
bat 'C:/GITTEMP/build.cmd'
}
}
}
2017-04-06 16:57:39 +00:00
stage('release') {
steps {
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-06 03:18:10 +00:00
}
}
}
2017-04-06 15:07:33 +00:00
}