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
|
/// 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}
|
||||||
'''
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue