neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit b1ca49a002b926eab5dd0160d9c45e0ef0df9d08
parent 5d5fa886fff58bc4246501fbaaf7f63a72c0f0fe
Author: dundargoc <gocdundar@gmail.com>
Date:   Wed, 21 Dec 2022 23:47:43 +0100

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.

Diffstat:
M.github/workflows/env.sh | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git 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