summaryrefslogtreecommitdiff
path: root/ci/travis.sh
diff options
context:
space:
mode:
authoryangwei <[email protected]>2024-11-11 19:06:59 +0800
committeryangwei <[email protected]>2024-11-11 19:06:59 +0800
commitb45accb12d4595f426b6f271571720cf67376554 (patch)
tree0e86291400edef9940f26333f8d3198a03df83b7 /ci/travis.sh
parentb2095aa2c9ade769c4772ec0fcc2f61e54e5f265 (diff)
🐎 ci(add aarch64 jobs): aarch64 + el9v2.10.12master
Diffstat (limited to 'ci/travis.sh')
-rw-r--r--ci/travis.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/ci/travis.sh b/ci/travis.sh
index 3cfc243..47f3db4 100644
--- a/ci/travis.sh
+++ b/ci/travis.sh
@@ -37,10 +37,6 @@ if [ -n "${INSTALL_DEPENDENCY_LIBRARY}" ]; then
yum install -y $INSTALL_DEPENDENCY_LIBRARY
fi
-if [ $ASAN_OPTION ] && [ -f "/opt/rh/devtoolset-7/enable" ] ;then
- source /opt/rh/devtoolset-7/enable
-fi
-
mkdir build || true
cd build
@@ -63,10 +59,3 @@ if [ -n "${UPLOAD_RPM}" ]; then
cp ~/rpm_upload_tools.py ./
python3 rpm_upload_tools.py ${PULP3_REPO_NAME} ${PULP3_DIST_NAME} *.rpm
fi
-
-if [ -n "${UPLOAD_SYMBOL_FILES}" ]; then
- rpm -i $SYMBOL_TARGET*debuginfo*.rpm
- _symbol_file=`find /usr/lib/debug/ -name "$SYMBOL_TARGET*.so*.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