diff options
| author | ii14 <ii14@users.noreply.github.com> | 2023-03-16 19:24:04 +0100 |
|---|---|---|
| committer | ii14 <ii14@users.noreply.github.com> | 2023-03-17 03:40:57 +0100 |
| commit | 17ce634b8f44e218270ee472599edf4cf3ba0fac (patch) | |
| tree | 14f758de27080c9337ca1ec9071496238ec6dabb /.github/workflows | |
| parent | 5bad9afed2189f3716865da42c66133d1f6da218 (diff) | |
| download | rneovim-17ce634b8f44e218270ee472599edf4cf3ba0fac.tar.gz rneovim-17ce634b8f44e218270ee472599edf4cf3ba0fac.tar.bz2 rneovim-17ce634b8f44e218270ee472599edf4cf3ba0fac.zip | |
build!: rename sanitizer options from CLANG_* to ENABLE_*
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5e6f05d973..0d18f874c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -132,11 +132,11 @@ jobs: - flavor: asan cc: clang runner: ubuntu-22.04 - flags: -D CLANG_ASAN_UBSAN=ON + flags: -D ENABLE_ASAN_UBSAN=ON - flavor: tsan cc: clang runner: ubuntu-22.04 - flags: -D CLANG_TSAN=ON + flags: -D ENABLE_TSAN=ON - flavor: uchar cc: gcc runner: ubuntu-22.04 |