build: add nostacktrace build to CI matrix

This commit is contained in:
Marcus Holland-Moritz 2024-08-06 12:44:49 +02:00
parent bfd0256011
commit a4a8f44075
2 changed files with 7 additions and 0 deletions

View File

@ -111,6 +111,10 @@ if [[ "-$BUILD_TYPE-" == *-noperfmon-* ]]; then
CMAKE_ARGS="${CMAKE_ARGS} -DENABLE_PERFMON=0 -DWITH_MAN_OPTION=0"
fi
if [[ "-$BUILD_TYPE-" == *-nostacktrace-* ]]; then
CMAKE_ARGS="${CMAKE_ARGS} -DENABLE_STACKTRACE=0"
fi
if [[ "-$BUILD_TYPE-" == *-static-* ]]; then
export LDFLAGS="-L/opt/static-libs/$COMPILER/lib"
CMAKE_ARGS="${CMAKE_ARGS} -DSTATIC_BUILD_DO_NOT_USE=1 -DUSE_PREFERRED_LIBS=1"

View File

@ -241,6 +241,9 @@ jobs:
- arch: arm64v8
dist: ubuntu
build_type: gcc-debug-noperfmon-ninja
- arch: arm64v8
dist: ubuntu
build_type: gcc-debug-nostacktrace-ninja
- arch: arm64v8
dist: ubuntu
build_type: oldclang-debug-make