Skip to content

Commit

Permalink
👷 Remove wasm feature flag for wasm32 target
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Aug 24, 2024
1 parent 71cab99 commit fbd6ca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/webassembly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
- if: ${{ startsWith(matrix.target, 'wasm32-wasi') }}
name: Run test
run: |
cargo test -p libpna --target ${{ matrix.target }} --features wasm -- --skip test_readme_deps --skip test_html_root_url
cargo test -p libpna --target ${{ matrix.target }} -- --skip test_readme_deps --skip test_html_root_url
- if: ${{ startsWith(matrix.target, 'wasm32-unknown-emscripten') }}
name: Run test
run: |
cargo test -p libpna --target ${{ matrix.target }} --features wasm -- --skip test_readme_deps --skip test_html_root_url
cargo test -p libpna --target ${{ matrix.target }} -- --skip test_readme_deps --skip test_html_root_url
env:
RUSTFLAGS: "-C link-arg=-sINITIAL_MEMORY=512MB -C link-arg=-sTOTAL_STACK=16MB"
- if: ${{ !startsWith(matrix.target, 'wasm32-wasi') && !startsWith(matrix.target, 'wasm32-unknown-emscripten') }}
Expand Down

0 comments on commit fbd6ca8

Please sign in to comment.