From 3d7a472c4d0ab2b049163b88522e2a38624f66aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Thu, 21 Nov 2019 15:09:38 +0100 Subject: [PATCH] changed quotes for variable expansion --- Jenkins/Phabricator-pipeline/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkins/Phabricator-pipeline/Jenkinsfile b/Jenkins/Phabricator-pipeline/Jenkinsfile index e3c5024..18ec459 100644 --- a/Jenkins/Phabricator-pipeline/Jenkinsfile +++ b/Jenkins/Phabricator-pipeline/Jenkinsfile @@ -84,19 +84,19 @@ pipeline { """ } /// send results to Phabricator - sh ''' + sh """ set +x cat <<-EOF> ${PHAB_LOG} Log files: [[${RESULT_URL}/console-log.txt | console-log.txt]], [[${RESULT_URL}/CMakeCache.txt | CMakeCache.txt]] EOF -''' - sh '''${SCRIPT_DIR}/phabtalk/phabtalk.py "${PHID}" "${DIFF_ID}" \ +""" + sh """${SCRIPT_DIR}/phabtalk/phabtalk.py "${PHID}" "${DIFF_ID}" \ --conduit-token "${CONDUIT_TOKEN}" \ --test-result-file "${TEST_REPORT}" \ --comment-file "${PHAB_LOG}" \ --host "${PHABRICATOR_HOST}/api/" \ --buildresult ${currentBuild.result} - ''' + """ } } } \ No newline at end of file