Removed automatic modpack integration step.

This commit is contained in:
Harrison Deng 2022-05-13 04:38:24 -05:00
parent 9a9839cceb
commit 32986018dd

10
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
cleanWs(patterns: [[pattern: 'publish/**', type: 'INCLUDE']])
}
}
stage("server launch test") {
stage("server trial") {
steps {
dir('server') {
sh 'echo "eula=true" > eula.txt'
@ -28,13 +28,5 @@ pipeline {
zip archive: true, dir: 'server', exclude: '', glob: '', overwrite: true, zipFile: 'publish/RSEMCS_server.zip'
}
}
stage("build downstream") {
when {
branch '**/master'
}
steps {
build wait: false, job: '../rsemcs/sync-modpack'
}
}
}
}