Epoch/Jenkinsfile

15 lines
173 B
Plaintext
Raw Normal View History

2017-04-05 20:18:10 -07:00
pipeline {
2017-05-07 15:48:09 -07:00
agent {
node {
label 'testing'
}
}
2017-04-05 20:18:10 -07:00
stages {
2017-04-09 13:59:47 -07:00
stage('Release') {
2017-04-06 11:57:39 -05:00
steps {
2017-04-09 13:59:47 -07:00
bat 'C:/GITTEMP/release.cmd'
2017-04-05 20:18:10 -07:00
}
}
}
2017-04-09 13:15:32 -07:00
}