From b1ca49a002b926eab5dd0160d9c45e0ef0df9d08 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Wed, 21 Dec 2022 23:47:43 +0100 Subject: [PATCH] ci: don't use asan_symbolize for the ASAN job asan_symbolize-14 gives a deprecation as it relies on outdated python features. We can safely stop using asan_symbolize as it's only needed for special cases such as cross compilation which we don't have to worry about. --- .github/workflows/env.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh index a30bfd546b..4a2217de89 100755 --- a/.github/workflows/env.sh +++ b/.github/workflows/env.sh @@ -30,7 +30,6 @@ case "$FLAVOR" in BUILD_FLAGS="$BUILD_FLAGS -DPREFER_LUA=ON" cat <> "$GITHUB_ENV" CLANG_SANITIZER=ASAN_UBSAN -SYMBOLIZER=asan_symbolize-14 ASAN_OPTIONS=detect_leaks=1:check_initialization_order=1:log_path=$GITHUB_WORKSPACE/build/log/asan:intercept_tls_get_addr=0 UBSAN_OPTIONS=print_stacktrace=1 log_path=$GITHUB_WORKSPACE/build/log/ubsan EOF