Skip to content

Commit dd49296

Browse files
committed
250422
1 parent fecef9f commit dd49296

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
run: |
3030
pushd "$(mktemp -d)"
3131
curl -f -L --retry 5 https://github.com/tweag/rust-alpine-mimalloc/archive/refs/heads/master.tar.gz | tar xz --strip-components=1
32+
sed -i 's/alpine:latest/alpine:edge/' Dockerfile
3233
podman build \
3334
--network host \
3435
--pull \
@@ -53,12 +54,14 @@ jobs:
5354
5455
MIMALLOC_VERBOSE=1 ./bin/wasm-component-ld --help
5556
MIMALLOC_VERBOSE=1 ./bin/wasm-tools --version
57+
MIMALLOC_VERBOSE=1 ./bin/wasmi_cli --version
5658
MIMALLOC_VERBOSE=1 ./bin/wasmtime --version
5759
MIMALLOC_VERBOSE=1 ./bin/wit-bindgen --version
5860
MIMALLOC_VERBOSE=1 ./bin/wizer --version
5961
6062
file ./bin/wasm-component-ld
6163
file ./bin/wasm-tools
64+
file ./bin/wasmi_cli
6265
file ./bin/wasmtime
6366
file ./bin/wit-bindgen
6467
file ./bin/wizer
@@ -103,6 +106,7 @@ jobs:
103106
104107
file ./bin/wasm-component-ld
105108
file ./bin/wasm-tools
109+
file ./bin/wasmi_cli
106110
file ./bin/wasmtime
107111
file ./bin/wit-bindgen
108112
file ./bin/wizer
@@ -158,7 +162,7 @@ jobs:
158162
--all-features `
159163
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
160164
--target ${{ matrix.arch }}-pc-windows-msvc `
161-
wasmtime-cli wasm-component-ld wit-bindgen-cli
165+
wasmtime-cli wasm-component-ld wasmi_cli wit-bindgen-cli
162166
163167
- name: upload-artifact
164168
uses: actions/upload-artifact@v4

README.md

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

66
- `wasm-component-ld`: `v0.5.12`
7-
- `wasm-tools`: `v1.228.0`
8-
- `wasmtime-cli`: `v31.0.0`
7+
- `wasm-tools`: `v1.229.0`
8+
- `wasmi_cli`: `v0.44.0`
9+
- `wasmtime-cli`: `v32.0.0`
910
- `wit-bindgen-cli`: `v0.41.0`
1011
- `wizer`: `v8.0.0`

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cargo install \
2121
--config 'profile.release.lto = "thin"' \
2222
--config 'profile.release.strip = "symbols"' \
2323
--root "$PWD" \
24-
wasm-component-ld wit-bindgen-cli ${1+"$@"}
24+
wasm-component-ld wasmi_cli wit-bindgen-cli ${1+"$@"}
2525

2626
cargo install \
2727
--all-features \

0 commit comments

Comments
 (0)