21 lines
770 B
Plaintext
21 lines
770 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage("server launch test") {
|
||
|
steps {
|
||
|
sh "./run.sh"
|
||
|
logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true
|
||
|
sh 'git reset --hard'
|
||
|
}
|
||
|
}
|
||
|
stage("publish") {
|
||
|
when {
|
||
|
branch "**/master"
|
||
|
}
|
||
|
steps {
|
||
|
zip archive: true, dir: 'curseforge', exclude: '', glob: '', zipFile: 'publish/RSEMCS.zip'
|
||
|
zip archive: true, dir: 'server', exclude: '', glob: '', zipFile: 'publish/RSEMCS_server.zip'
|
||
|
fingerprint 'publish/*.zip'
|
||
|
}
|
||
|
}
|
||
|
}
|