Skip to content

Commit

Permalink
CI: Disable C tests on macOS
Browse files Browse the repository at this point in the history
As a workaround for lcompilers#2455.
  • Loading branch information
certik committed Feb 8, 2024
1 parent 55f3d9a commit 1070fb7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ci/test.xsh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ else:
src/bin/lpython examples/expr2.py
src/bin/lpython --backend=c examples/expr2.py
cd integration_tests
python run_tests.py -j16 -b llvm cpython c wasm
python run_tests.py -j16 -b llvm cpython c wasm -f

if $(uname).strip() == "Linux":
python run_tests.py -j16 -b llvm cpython c wasm
python run_tests.py -j16 -b llvm cpython c wasm -f
python run_tests.py -j16 -b x86 wasm_x86 wasm_x64
python run_tests.py -j16 -b x86 wasm_x86 wasm_x64 -f
else:
python run_tests.py -j16 -b llvm cpython wasm
python run_tests.py -j16 -b llvm cpython wasm -f

0 comments on commit 1070fb7

Please sign in to comment.