Epoch/Jenkinsfile
2017-04-10 08:24:09 -07:00

19 lines
375 B
Groovy

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