aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2022-12-21 23:47:43 +0100
committerdundargoc <gocdundar@gmail.com>2022-12-21 23:53:45 +0100
commitb1ca49a002b926eab5dd0160d9c45e0ef0df9d08 (patch)
tree370af90b3ada6dc657f738208d53d6d118894da5
parent5d5fa886fff58bc4246501fbaaf7f63a72c0f0fe (diff)
downloadrneovim-b1ca49a002b926eab5dd0160d9c45e0ef0df9d08.tar.gz
rneovim-b1ca49a002b926eab5dd0160d9c45e0ef0df9d08.tar.bz2
rneovim-b1ca49a002b926eab5dd0160d9c45e0ef0df9d08.zip
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.
-rwxr-xr-x.github/workflows/env.sh1
1 files changed, 0 insertions, 1 deletions
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 <<EOF >> "$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