Epoch/Jenkinsfile

15 lines
173 B
Plaintext
Raw Normal View History

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