Fixed Jenkinsfile typo.

Fixed server launch path in Jenkinsfile.
This commit is contained in:
Harrison Deng 2022-05-12 02:28:07 -05:00
parent ad1ece15da
commit 0abd316d13

5
Jenkinsfile vendored
View File

@ -3,7 +3,9 @@ pipeline {
stages { stages {
stage("server launch test") { stage("server launch test") {
steps { steps {
sh "./run.sh" dir('server') {
sh "./run.sh"
}
logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true
sh 'git reset --hard' sh 'git reset --hard'
} }
@ -18,4 +20,5 @@ pipeline {
fingerprint 'publish/*.zip' fingerprint 'publish/*.zip'
} }
} }
}
} }