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

11
Jenkinsfile vendored
View File

@ -1,16 +1,12 @@
pipeline { pipeline {
agent none agent any
stages { stages {
stage('checkout') { stage('checkout') {
steps { steps {
node(label: 'testing') { node(label: 'testing') {
checkout scm git(url: 'https://github.com/EpochModTeam/Epoch.git', branch: 'experimental')
fileExists ('README.md')
fileExists ('version.txt')
fileExists ('build.txt')
fileExists ('nonexistentFile.txt')
bat 'C:/GITTEMP/build.cmd'
} }
} }
} }
stage('release') { stage('release') {
@ -18,6 +14,7 @@ pipeline {
node(label: 'testing') { node(label: 'testing') {
bat 'C:/GITTEMP/release.cmd' bat 'C:/GITTEMP/release.cmd'
} }
} }
} }
} }