commit 295fd9dad9634413e9b6bdb32b7f183812c30fce
parent 640daab9b52ef3d8760c38d875b01caba7bea243
Author: Alexander Hansen Færøy <ahf@torproject.org>
Date: Tue, 18 Mar 2025 13:33:23 +0100
CI: Install libubsan1 when building with hardening enabled.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
@@ -102,6 +102,8 @@ variables:
- 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
+ # libubsan1 for building with -fsanitize=address
+ - if [ "$HARDENING" = yes ]; then apt-get install libubsan1; fi
# TODO: This next line should not be debian-only.
- if [ "$STEM" = yes ]; then git clone --depth 1 https://gitlab.torproject.org/tpo/network-health/stem.git ; export STEM_PATH="$(pwd)/stem"; fi
# TODO: This next line should not be debian-only.