Skip to content

Commit 7e5f656

Browse files
committed
disable #pragma message warning
1 parent 09cf377 commit 7e5f656

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/windows_clang.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
run: |
2424
echo "CI=false" >> "$GITHUB_ENV"
2525
- name: Test No-Op (debug)
26-
run: clang -O0 -fstack-protector-all tests\noop.c -I. -DFIO_LEAK_COUNTER=1 -DDEBUG -D_CRT_NONSTDC_NO_WARNINGS -o ./noop.exe && ./noop.exe
26+
run: clang -O0 -Wno-#pragma-messages -fstack-protector-all tests\noop.c -I. -DFIO_LEAK_COUNTER=1 -DDEBUG -D_CRT_NONSTDC_NO_WARNINGS -o ./noop.exe && ./noop.exe
2727
- name: Test STL (debug) - no allocators
28-
run: clang -O0 -fstack-protector-all tests\stl.c -I. -DFIO_MEMORY_DISABLE=1 -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -DDEBUG -o ./stld.exe && ./stld.exe
28+
run: clang -O0 -Wno-#pragma-messages -fstack-protector-all tests\stl.c -I. -DFIO_MEMORY_DISABLE=1 -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -DDEBUG -o ./stld.exe && ./stld.exe
2929
- name: Test fio_malloc speed
30-
run: clang -O3 -march=native tests\malloc.c -I. -o ./malloc.exe && ./malloc.exe
30+
run: clang -O3 -Wno-#pragma-messages -march=native tests\malloc.c -I. -o ./malloc.exe && ./malloc.exe
3131
- name: Test STL
32-
run: clang -O3 -march=native tests\stl.c -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -I. -o ./stl.exe && ./stl.exe
32+
run: clang -O3 -Wno-#pragma-messages -march=native tests\stl.c -DFIO_LEAK_COUNTER=1 -D_CRT_NONSTDC_NO_WARNINGS -I. -o ./stl.exe && ./stl.exe

0 commit comments

Comments
 (0)