diff options
author | James McCoy <jamessan@jamessan.com> | 2022-01-01 11:43:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-01 11:43:38 -0500 |
commit | e5f7b61136f8975e54d8f0110bc35746aeae7049 (patch) | |
tree | e4c1071231044f3e031657d1147cd0cb431e15e1 | |
parent | 273b5c928273ab9e1d4e2ae11b35f88fb186ad1a (diff) | |
parent | 6a932f68e6853e4fdcb49621fb1d89829a23238b (diff) | |
download | rneovim-e5f7b61136f8975e54d8f0110bc35746aeae7049.tar.gz rneovim-e5f7b61136f8975e54d8f0110bc35746aeae7049.tar.bz2 rneovim-e5f7b61136f8975e54d8f0110bc35746aeae7049.zip |
Merge pull request #16840 from zeertzjq/ci-clang-13
ci: bump clang version to 13 in asan and tsan
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rwxr-xr-x | .github/workflows/env.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a67a44407b..7fef198934 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: matrix: include: - flavor: asan - cc: clang-12 + cc: clang-13 runner: ubuntu-20.04 os: linux - flavor: lint @@ -31,7 +31,7 @@ jobs: runner: ubuntu-20.04 os: linux - flavor: tsan - cc: clang-12 + cc: clang-13 runner: ubuntu-20.04 os: linux - cc: clang @@ -63,7 +63,7 @@ jobs: run: | wget https://apt.llvm.org/llvm.sh chmod a+x llvm.sh - sudo ./llvm.sh 12 + sudo ./llvm.sh 13 rm llvm.sh - name: Install brew packages diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh index a30e06ae26..d1bc412399 100755 --- a/.github/workflows/env.sh +++ b/.github/workflows/env.sh @@ -34,7 +34,7 @@ case "$FLAVOR" in BUILD_FLAGS="$BUILD_FLAGS -DPREFER_LUA=ON" cat <<EOF >> "$GITHUB_ENV" CLANG_SANITIZER=ASAN_UBSAN -SYMBOLIZER=asan_symbolize-12 +SYMBOLIZER=asan_symbolize-13 ASAN_OPTIONS=detect_leaks=1:check_initialization_order=1:log_path=$GITHUB_WORKSPACE/build/log/asan UBSAN_OPTIONS=print_stacktrace=1 log_path=$GITHUB_WORKSPACE/build/log/ubsan EOF |