Skip to content

Commit

Permalink
fix: specify members with target wasm32-wasi
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Chi committed Oct 22, 2023
1 parent f75655d commit 60728c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:

# Build for wasm32-wasi target
- name: Build wasm32-wasi Target
run: cargo build --verbose --target wasm32-wasi
run: |
for member in examples/water_bins/ss_client_wasm_v1/ examples/water_bins/echo_client/; do
cargo build --verbose --manifest-path $member/Cargo.toml --target wasm32-wasi
done
env:
RUSTFLAGS: --cfg tokio_unstable

Expand Down

0 comments on commit 60728c7

Please sign in to comment.