Skip to content

Commit 1070fb7

Browse files
committed
CI: Disable C tests on macOS
As a workaround for #2455.
1 parent 55f3d9a commit 1070fb7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

ci/test.xsh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ else:
2222
src/bin/lpython examples/expr2.py
2323
src/bin/lpython --backend=c examples/expr2.py
2424
cd integration_tests
25-
python run_tests.py -j16 -b llvm cpython c wasm
26-
python run_tests.py -j16 -b llvm cpython c wasm -f
2725

2826
if $(uname).strip() == "Linux":
27+
python run_tests.py -j16 -b llvm cpython c wasm
28+
python run_tests.py -j16 -b llvm cpython c wasm -f
2929
python run_tests.py -j16 -b x86 wasm_x86 wasm_x64
3030
python run_tests.py -j16 -b x86 wasm_x86 wasm_x64 -f
31+
else:
32+
python run_tests.py -j16 -b llvm cpython wasm
33+
python run_tests.py -j16 -b llvm cpython wasm -f

0 commit comments

Comments
 (0)