From ba4c71fb12908a0ed8076b66a3f66dd6f00e2648 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Thu, 24 Oct 2019 12:51:47 -0700 Subject: [PATCH] fixed link URL --- Jenkins/Phabricator-pipeline/Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkins/Phabricator-pipeline/Jenkinsfile b/Jenkins/Phabricator-pipeline/Jenkinsfile index 21388fa..5921a9a 100644 --- a/Jenkins/Phabricator-pipeline/Jenkinsfile +++ b/Jenkins/Phabricator-pipeline/Jenkinsfile @@ -23,9 +23,8 @@ pipeline { PHABRICATOR_HOST = 'https://reviews.llvm.org' PHAB_LOG = "${WORKSPACE}/build/.phabricator-comment" SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts" - RESULT_URL = "http://results.llvm-merge-guard.org/${BUILD_ID}" + RESULT_URL = "http://results.llvm-merge-guard.org/${JOB_BASE_NAME}-${BUILD_NUMBER}" TEST_REPORT = "${WORKSPACE}/build/test-results.xml" - } stages { stage("build info"){ @@ -88,7 +87,7 @@ EOF --conduit-token "${CONDUIT_TOKEN}" \ --test-result-file "${TEST_REPORT}" \ --comment-file "${PHAB_LOG}" \ - --host "https://reviews.llvm.org/api/" + --host "${PHABRICATOR_HOST}/api/" ''' } }