mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
22 lines
364 B
Groovy
22 lines
364 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('checkout') {
|
|
steps {
|
|
node (label: 'testing') {
|
|
checkout scm
|
|
fileExists 'README.md'
|
|
bat 'C:/GITTEMP/build.cmd'
|
|
}
|
|
}
|
|
}
|
|
stage('release') {
|
|
steps {
|
|
node (label: 'testing') {
|
|
bat 'C:/GITTEMP/release.cmd'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|