Skip to content

Commit 4cf7da5

Browse files
authored
Merge pull request #2517 from certik/ci_fix
CI: Disable C tests on macOS
2 parents 55f3d9a + 1070fb7 commit 4cf7da5

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)