changed quotes for variable expansion
This commit is contained in:
parent
0be0498203
commit
3d7a472c4d
1 changed files with 4 additions and 4 deletions
8
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
8
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -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}
|
||||
'''
|
||||
"""
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue