aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2022-04-26 09:39:20 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2022-04-26 10:13:46 -0400
commit1a19f82a904e14054088fc15a6fc76a6c8b64f46 (patch)
treee44233f023d176e2d50eee2a398ed7ee91296063 /.gitlab-ci.yml
parent616c06c0b2748db163cbb6882043d24fdbaaf335 (diff)
downloadtor-1a19f82a904e14054088fc15a6fc76a6c8b64f46.tar.gz
tor-1a19f82a904e14054088fc15a6fc76a6c8b64f46.zip
ci: install llvm-symbolizer
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d033b7ca30..3116d608e3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -97,6 +97,8 @@ variables:
- if [ "$STEM" = yes ]; then apt-get install timelimit; fi
- if [ "$CC" = clang ]; then apt-get install clang; fi
- if [ "$NSS" = yes ]; then apt-get install libnss3 libnss3-dev; fi
+ # llvm-symbolizer for sanitizer backtrace
+ - if [ "$HARDENING" = yes ]; then apt-get install llvm; fi
# TODO: This next line should not be debian-only.
- if [ "$STEM" = yes ]; then git clone --depth 1 https://git.torproject.org/stem.git ; export STEM_PATH="$(pwd)/stem"; fi
# TODO: This next line should not be debian-only.