Skip to content

Commit

Permalink
ci: run test with debug logging, not the build
Browse files Browse the repository at this point in the history
  • Loading branch information
heeckhau committed Sep 13, 2024
1 parent 80a9a61 commit a4a0de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-test-runner/run.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a4a0de0

Please sign in to comment.