Skip to content

Commit

Permalink
Merge pull request #2517 from certik/ci_fix
Browse files Browse the repository at this point in the history
CI: Disable C tests on macOS
  • Loading branch information
certik authored Feb 9, 2024
2 parents 55f3d9a + 1070fb7 commit 4cf7da5
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 4cf7da5

Please sign in to comment.