Epoch/Jenkinsfile
2017-05-07 15:48:09 -07:00

15 lines
173 B
Groovy

pipeline {
agent {
node {
label 'testing'
}
}
stages {
stage('Release') {
steps {
bat 'C:/GITTEMP/release.cmd'
}
}
}
}