Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,13 @@ jobs:

- uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip2
# BOTH targets (v1.131): std components build wasm32-wasip2; no_std
# components build wasm32-unknown-unknown (see NOSTD_COMPONENTS in
# scripts/build-components.sh — the wasip2 target links wasi-libc,
# whose cabi_realloc pulls in memory.grow, which blocks the MCU
# lowering). Omitting the second target fails the release at
# "building rate (wasm32-unknown-unknown)... ERROR: no .wasm found".
targets: wasm32-wasip2, wasm32-unknown-unknown

- name: Install cosign
uses: sigstore/cosign-installer@v3
Expand Down
Loading