Epoch/Jenkinsfile
2017-04-09 13:15:32 -07:00

21 lines
373 B
Groovy

pipeline {
agent any
stages {
stage('checkout') {
steps {
node(label: 'testing') {
git(url: 'https://github.com/EpochModTeam/Epoch.git', branch: 'experimental')
}
}
}
stage('release') {
steps {
node(label: 'testing') {
bat 'C:/GITTEMP/release.cmd'
}
}
}
}
}