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

3
Jenkinsfile vendored
View File

@ -3,7 +3,9 @@ pipeline {
stages { stages {
stage("server launch test") { stage("server launch test") {
steps { steps {
dir('server') {
sh "./run.sh" 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'
} }
@ -19,3 +21,4 @@ pipeline {
} }
} }
} }
}