Skip to content

Commit e7f124f

Browse files
committed
240423
1 parent d7fd5cd commit e7f124f

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
rust:alpine-mimalloc \
5555
sh -c 'TARGET=$(rustc -vV | sed -n "s|host: ||p") && exec ./build.sh --target $TARGET'
5656
57+
MIMALLOC_VERBOSE=1 ./bin/wasm-component-ld --help
5758
MIMALLOC_VERBOSE=1 ./bin/wasm-tools --version
5859
MIMALLOC_VERBOSE=1 ./bin/wasmtime --version
5960
MIMALLOC_VERBOSE=1 ./bin/wit-bindgen --version
@@ -158,7 +159,13 @@ jobs:
158159
--all-features `
159160
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
160161
--target ${{ matrix.arch }}-pc-windows-msvc `
161-
wasm-component-ld wasm-tools wit-bindgen-cli wasmtime-cli
162+
wasm-component-ld wasm-tools wit-bindgen-cli
163+
164+
cargo install `
165+
--features winch `
166+
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
167+
--target ${{ matrix.arch }}-pc-windows-msvc `
168+
wasmtime-cli
162169
163170
- name: upload-artifact
164171
uses: actions/upload-artifact@v4

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Static builds of `wasm-tools`, `wasmtime-cli`, `wizer` for
44
{x86_64,aarch64}-{linux,darwin,windows}:
55

6-
- `wasm-component-ld`: `v0.1.5`
7-
- `wasm-tools`: `v1.202.0`
8-
- `wasmtime-cli`: `v19.0.2`
6+
- `wasm-component-ld`: `v0.3.0`
7+
- `wasm-tools`: `v1.205.0`
8+
- `wasmtime-cli`: `v20.0.0`
99
- `wit-bindgen-cli`: `v0.24.0`
10-
- `wizer`: `v5.0.0-git`
10+
- `wizer`: `v6.0.0-git`

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cargo install \
1818
wasm-component-ld wasm-tools wit-bindgen-cli ${1+"$@"}
1919

2020
cargo install \
21-
--all-features \
21+
--features winch \
2222
--config 'profile.release.lto = "thin"' \
2323
--root "$PWD" \
2424
wasmtime-cli ${1+"$@"}

0 commit comments

Comments
 (0)