mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
run glue_cli_tests single threaded
This commit is contained in:
parent
a98acff0b9
commit
205c78e2df
1 changed files with 6 additions and 1 deletions
7
.github/workflows/nix_linux_x86_64.yml
vendored
7
.github/workflows/nix_linux_x86_64.yml
vendored
|
|
@ -24,7 +24,12 @@ jobs:
|
|||
run: nix develop -c ./ci/roc_test_builtins.sh
|
||||
|
||||
- name: test wasm32 cli_tests
|
||||
run: nix develop -c cargo test --locked --release --features="wasm32-cli-run"
|
||||
# skipping glue tests due to difficult multithreading bug, we run them single threaded in the next step
|
||||
run: nix develop -c cargo test --locked --release --features="wasm32-cli-run" -- --skip glue_cli_tests
|
||||
|
||||
- name: wasm32 glue_cli_tests
|
||||
# single threaded due to difficult bug when multithreading
|
||||
run: nix develop -c cargo test --locked --release --features="wasm32-cli-run" glue_cli_tests -- --test-threads=1
|
||||
|
||||
- name: test the dev backend # these tests require an explicit feature flag
|
||||
run: nix develop -c cargo nextest run --locked --release --package test_gen --no-default-features --features gen-dev --no-fail-fast
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue