This commit is contained in:
vbawol 2017-04-09 13:15:32 -07:00
parent 6c42192724
commit e680d32d12

17
Jenkinsfile vendored
View File

@ -1,24 +1,21 @@
pipeline {
agent none
agent any
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'
node(label: 'testing') {
git(url: 'https://github.com/EpochModTeam/Epoch.git', branch: 'experimental')
}
}
}
stage('release') {
steps {
node (label: 'testing') {
node(label: 'testing') {
bat 'C:/GITTEMP/release.cmd'
}
}
}
}
}
}