1
0
Fork 0

changed quotes for variable expansion

This commit is contained in:
Christian Kühnel 2019-11-21 15:09:38 +01:00
parent 0be0498203
commit 3d7a472c4d

View file

@ -84,19 +84,19 @@ pipeline {
""" """
} }
/// send results to Phabricator /// send results to Phabricator
sh ''' sh """
set +x set +x
cat <<-EOF> ${PHAB_LOG} cat <<-EOF> ${PHAB_LOG}
Log files: [[${RESULT_URL}/console-log.txt | console-log.txt]], [[${RESULT_URL}/CMakeCache.txt | CMakeCache.txt]] Log files: [[${RESULT_URL}/console-log.txt | console-log.txt]], [[${RESULT_URL}/CMakeCache.txt | CMakeCache.txt]]
EOF EOF
''' """
sh '''${SCRIPT_DIR}/phabtalk/phabtalk.py "${PHID}" "${DIFF_ID}" \ sh """${SCRIPT_DIR}/phabtalk/phabtalk.py "${PHID}" "${DIFF_ID}" \
--conduit-token "${CONDUIT_TOKEN}" \ --conduit-token "${CONDUIT_TOKEN}" \
--test-result-file "${TEST_REPORT}" \ --test-result-file "${TEST_REPORT}" \
--comment-file "${PHAB_LOG}" \ --comment-file "${PHAB_LOG}" \
--host "${PHABRICATOR_HOST}/api/" \ --host "${PHABRICATOR_HOST}/api/" \
--buildresult ${currentBuild.result} --buildresult ${currentBuild.result}
''' """
} }
} }
} }