Skip to content

Commit 883a0d3

Browse files
committed
250611
1 parent dd49296 commit 883a0d3

File tree

3 files changed

+8
-23
lines changed

3 files changed

+8
-23
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,6 @@ jobs:
146146
run: |
147147
mkdir wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }}
148148
149-
cargo install `
150-
--all-features `
151-
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
152-
--target ${{ matrix.arch }}-pc-windows-msvc `
153-
--git https://github.com/bytecodealliance/wizer.git `
154-
wizer
155-
156149
cargo install `
157150
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
158151
--target ${{ matrix.arch }}-pc-windows-msvc `
@@ -162,7 +155,7 @@ jobs:
162155
--all-features `
163156
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
164157
--target ${{ matrix.arch }}-pc-windows-msvc `
165-
wasmtime-cli wasm-component-ld wasmi_cli wit-bindgen-cli
158+
wasmtime-cli wasm-component-ld wasmi_cli wit-bindgen-cli wizer
166159
167160
- name: upload-artifact
168161
uses: actions/upload-artifact@v4

README.md

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

6-
- `wasm-component-ld`: `v0.5.12`
7-
- `wasm-tools`: `v1.229.0`
8-
- `wasmi_cli`: `v0.44.0`
9-
- `wasmtime-cli`: `v32.0.0`
10-
- `wit-bindgen-cli`: `v0.41.0`
11-
- `wizer`: `v8.0.0`
6+
- `wasm-component-ld`: `v0.5.13`
7+
- `wasm-tools`: `v1.234.0`
8+
- `wasmi_cli`: `v0.47.0`
9+
- `wasmtime-cli`: `v33.0.0`
10+
- `wit-bindgen-cli`: `v0.42.1`
11+
- `wizer`: `v9.0.0`

build.sh

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
set -eu
44

5-
cargo install \
6-
--all-features \
7-
--config 'profile.release.lto = "thin"' \
8-
--config 'profile.release.strip = "symbols"' \
9-
--root "$PWD" \
10-
--git https://github.com/bytecodealliance/wizer.git \
11-
wizer ${1+"$@"}
12-
135
cargo install \
146
--config 'profile.release.lto = "thin"' \
157
--config 'profile.release.strip = "symbols"' \
@@ -21,7 +13,7 @@ cargo install \
2113
--config 'profile.release.lto = "thin"' \
2214
--config 'profile.release.strip = "symbols"' \
2315
--root "$PWD" \
24-
wasm-component-ld wasmi_cli wit-bindgen-cli ${1+"$@"}
16+
wasm-component-ld wasmi_cli wit-bindgen-cli wizer ${1+"$@"}
2517

2618
cargo install \
2719
--all-features \

0 commit comments

Comments
 (0)