diff options
author | James McCoy <jamessan@jamessan.com> | 2021-04-18 22:04:46 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-04-21 00:14:43 -0400 |
commit | 74f8196935a83879c64caff87090ac7341ed5726 (patch) | |
tree | b98fe7cf0d19987c763f82800a93a3af69f1248c | |
parent | 02909d150e81686d049c131e959e9405efbbce3e (diff) | |
download | rneovim-74f8196935a83879c64caff87090ac7341ed5726.tar.gz rneovim-74f8196935a83879c64caff87090ac7341ed5726.tar.bz2 rneovim-74f8196935a83879c64caff87090ac7341ed5726.zip |
ci(gha): Update to clang-12
-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 bd90aeb932..9ea8f77563 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: matrix: include: - flavor: asan - cc: clang-11 + cc: clang-12 runner: ubuntu-20.04 os: linux - flavor: lint @@ -42,7 +42,7 @@ jobs: if: matrix.flavor == 'asan' || matrix.flavor == 'tsan' run: | wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - - sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main' + sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' - name: Install apt packages if: matrix.os == 'linux' @@ -52,7 +52,7 @@ jobs: - name: Install new clang if: matrix.flavor == 'asan' || matrix.flavor == 'tsan' - run: sudo apt-get install -y clang-11 + run: sudo apt-get install -y clang-12 - name: Install brew packages if: matrix.os == 'osx' diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh index cc1cef5cc4..459ed669eb 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-11 +SYMBOLIZER=asan_symbolize-12 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 |