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