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