diff --git a/Jenkinsfile b/Jenkinsfile index 58958a4..0a6e2ab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,9 @@ pipeline { stages { stage("server launch test") { steps { - sh "./run.sh" + dir('server') { + sh "./run.sh" + } logParser failBuildOnError: true, projectRulePath: 'Jenkinsparse', parsingRulesPath: 'Jenkinsparse', showGraphs: true, unstableOnWarning: true, useProjectRule: true sh 'git reset --hard' } @@ -18,4 +20,5 @@ pipeline { fingerprint 'publish/*.zip' } } + } } \ No newline at end of file