ci: run test with debug logging, not the build

This commit is contained in:
Hendrik Eeckhaut
2024-09-12 11:26:10 +02:00
parent 80a9a61e9e
commit a4a0de02f9
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ jobs:
- name: Run tests
run: |
cd crates/wasm-test-runner
RUST_LOG=debug ./run.sh
./run.sh
tests-integration:
name: Run tests release build
runs-on: ubuntu-latest

View File

@@ -1,4 +1,4 @@
RUSTFLAGS='-C target-feature=+atomics,+bulk-memory,+mutable-globals' \
rustup run nightly \
wasm-pack build ../wasm --target web --no-pack --out-dir=../wasm-test-runner/static/generated -- -Zbuild-std=panic_abort,std --features test,no-bundler \
&& cargo run --release
&& RUST_LOG=debug cargo run --release