neovim

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

commit 27ff59fb07ad11cff0be499dba9efa3e9c4eab91
parent 01ff681f571887fe3ffce90e0df60cf1997e9980
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Sat,  5 Nov 2022 22:29:44 +0100

ci: fix incorrect asan_symbolize name (#20900)


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

diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh @@ -30,7 +30,7 @@ case "$FLAVOR" in BUILD_FLAGS="$BUILD_FLAGS -DPREFER_LUA=ON" cat <<EOF >> "$GITHUB_ENV" CLANG_SANITIZER=ASAN_UBSAN -SYMBOLIZER=asan_symbolize +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