Skip to content

Commit 43f68be

Browse files
authored
CI-unixish.yml: also run sanitizers on latest macOS (#607)
1 parent a45afce commit 43f68be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI-unixish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ jobs:
119119
make -j$(nproc) test selfcheck CXXOPTS="-Werror -stdlib=libc++ -g3 -D_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_DEBUG" LDOPTS="-lc++"
120120
121121
- name: Run AddressSanitizer
122-
if: matrix.os == 'ubuntu-24.04'
122+
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'macos-26'
123123
run: |
124124
make clean
125125
make -j$(nproc) test selfcheck CXXOPTS="-Werror -O2 -g3 -fsanitize=address" LDOPTS="-fsanitize=address"
126126
env:
127127
ASAN_OPTIONS: detect_stack_use_after_return=1
128128

129129
- name: Run UndefinedBehaviorSanitizer
130-
if: matrix.os == 'ubuntu-24.04'
130+
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'macos-26'
131131
run: |
132132
make clean
133133
make -j$(nproc) test selfcheck CXXOPTS="-Werror -O2 -g3 -fsanitize=undefined -fno-sanitize=signed-integer-overflow" LDOPTS="-fsanitize=undefined -fno-sanitize=signed-integer-overflow"

0 commit comments

Comments
 (0)