Skip to content

Commit 9ffc948

Browse files
committed
exclude guarded test on win11 arm
1 parent a4d69e8 commit 9ffc948

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
ctest --test-dir out/debug-tsan --verbose --timeout 240 -C Debug
118118
119119
- name: Debug, Guarded
120-
if: matrix.tests == 'extra'
120+
if: matrix.tests == 'extra' && matrix.os != 'windows-11-arm'
121121
run: |
122122
cmake . -B out/debug-guarded -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON -DMI_GUARDED=ON
123123
cmake --build out/debug-guarded --parallel 8 --config Debug
@@ -126,7 +126,7 @@ jobs:
126126
MIMALLOC_GUARDED_SAMPLE_RATE: 100
127127

128128
- name: Release, Guarded
129-
if: matrix.tests == 'extra'
129+
if: matrix.tests == 'extra' && matrix.os != 'windows-11-arm'
130130
run: |
131131
cmake . -B out/resease-guarded -DCMAKE_BUILD_TYPE=Release -DMI_OPT_ARCH=ON -DMI_GUARDED=ON
132132
cmake --build out/resease-guarded --parallel 8 --config Release

0 commit comments

Comments
 (0)