Skip to content

Commit

Permalink
Remove wasm-pack build step from web-client CI job
Browse files Browse the repository at this point in the history
`wasm-pack build` runs wasm-opt automatically, which currently fails for an unknown reason.

The wasm tests are run with `wasm-pack test`, which compiles to a debug target and doesn't use wasm-opt, so doesn't trigger the problem.

The actual build will be tested as part of PR #2715.
  • Loading branch information
sisou committed Oct 18, 2024
1 parent 01f7d5e commit 9d3c4ff
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build+test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Install wasm-pack
run: cargo install wasm-pack
- name: Compile to wasm and generate bindings
working-directory: ./web-client
run: wasm-pack build --target web
- name: Execute wasm unittests
working-directory: ./web-client
run: wasm-pack test --chrome --headless
Expand Down

0 comments on commit 9d3c4ff

Please sign in to comment.