Skip to content

Commit 494007e

Browse files
committed
debugging sonar
1 parent a0e5132 commit 494007e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Jenkinsfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ pipeline {
1111
WKTUI_DEV_PROXY = "${WKTUI_PROXY}"
1212
WKTUI_BUILD_EMAIL = sh(returnStdout: true, script: "echo ${env.WKTUI_BUILD_NOTIFY_EMAIL} | sed -e 's/^[[:space:]]*//'")
1313
WKTUI_PROXY_HOSTPORT = sh(returnStdout: true, script: "echo ${env.WKTUI_PROXY} | sed -e 's,http://,,'")
14-
WKTUI_PROXY_HOST = sh(returnStdout: true, script: "echo ${env.WKTUI_PROXY_HOSTPORT} | awk '{split(\$0,a,\":\"); print a[1]}'")
15-
WKTUI_PROXY_PORT = sh(returnStdout: true, script: "echo ${env.WKTUI_PROXY_HOSTPORT} | awk '{split(\$0,a,\":\"); print a[2]}'")
1614

1715
npm_registry = "${env.ARTIFACTORY_NPM_REPO}"
1816
npm_noproxy = "${env.ORACLE_NO_PROXY}"
@@ -154,6 +152,9 @@ pipeline {
154152
electron_coverage = "${WORKSPACE}/electron/coverage/lcov.info"
155153
webui_coverage = "${WORKSPACE}/webui/coverage/lcov.info"
156154
lcov_report_paths = "${electron_coverage},${webui_coverage}"
155+
156+
WKTUI_PROXY_HOST = sh(returnStdout: true, script: "echo ${WKTUI_PROXY_HOSTPORT} | awk '{split(\$0,a,\":\"); print a[1]}'")
157+
WKTUI_PROXY_PORT = sh(returnStdout: true, script: "echo ${WKTUI_PROXY_HOSTPORT} | awk '{split(\$0,a,\":\"); print a[2]}'")
157158
}
158159
steps {
159160
echo "JAVA_HOME = ${JAVA_HOME}"

0 commit comments

Comments
 (0)