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

15
Jenkinsfile vendored
View File

@ -1,23 +1,20 @@
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') {
steps { steps {
node (label: 'testing') { node(label: 'testing') {
bat 'C:/GITTEMP/release.cmd' bat 'C:/GITTEMP/release.cmd'
} }
} }
} }
} }