summaryrefslogtreecommitdiff
path: root/ci/travis.sh
diff options
context:
space:
mode:
authorliuxueli <l>2022-03-16 09:43:41 +0800
committerliuxueli <l>2022-03-16 09:43:41 +0800
commit9f18dec6d8c1c375c6b0ae88d4a58a02130217e8 (patch)
tree4b77443327bad3be6e3e77245ef080534e050cad /ci/travis.sh
parent4af2b214f7cdf139ed6821632324ace0c77dc758 (diff)
Rocky Linux8.5中编译出来的debuginfo命名方式与centos7不同,导致上传debuginfo失败
Diffstat (limited to 'ci/travis.sh')
-rw-r--r--ci/travis.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/travis.sh b/ci/travis.sh
index d1bb6d7..4798ddb 100644
--- a/ci/travis.sh
+++ b/ci/travis.sh
@@ -72,7 +72,7 @@ if [ -n "${UPLOAD}" ]; then
cp ~/rpm_upload_tools.py ./
python3 rpm_upload_tools.py ${PULP3_REPO_NAME} ${PULP3_DIST_NAME} *.rpm
rpm -i $SYMBOL_TARGET*debuginfo*.rpm
- _symbol_file=`find /usr/lib/debug/ -name "$SYMBOL_TARGET.debug"`
+ _symbol_file=`find /usr/lib/debug/ -name "$SYMBOL_TARGET*.debug"`
cp $_symbol_file ${_symbol_file}info.${CI_COMMIT_SHORT_SHA}
sentry-cli upload-dif -t elf ${_symbol_file}info.${CI_COMMIT_SHORT_SHA}
fi