Skip to content

Commit 2e9419c

Browse files
committed
240521
1 parent 7ab1d6b commit 2e9419c

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
linux:
1212
name: linux-${{ matrix.arch }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
strategy:
1515
fail-fast: false
1616
matrix:
@@ -70,7 +70,6 @@ jobs:
7070
mv bin wasm-tools-${{ github.ref_name }}-${{ matrix.sys }}
7171
tar \
7272
--sort=name \
73-
--mtime=1970-01-01T00:00:00Z \
7473
--owner=0 --group=0 --numeric-owner \
7574
--use-compress-program="zstd --ultra -22 --threads=0" \
7675
-cf wasm-tools-${{ github.ref_name }}-${{ matrix.sys }}.tar.zst \
@@ -114,7 +113,6 @@ jobs:
114113
mv bin wasm-tools-${{ github.ref_name }}-darwin-${{ matrix.arch }}
115114
gtar \
116115
--sort=name \
117-
--mtime=1970-01-01T00:00:00Z \
118116
--owner=0 --group=0 --numeric-owner \
119117
--use-compress-program="zstd --ultra -22 --threads=0" \
120118
-cf wasm-tools-${{ github.ref_name }}-darwin-${{ matrix.arch }}.tar.zst \
@@ -152,20 +150,14 @@ jobs:
152150
--all-features `
153151
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
154152
--target ${{ matrix.arch }}-pc-windows-msvc `
155-
--git https://github.com/type-dance/wizer.git `
153+
--git https://github.com/TerrorJack/wizer.git `
156154
wizer
157155
158156
cargo install `
159157
--all-features `
160158
--root wasm-tools-${{ github.ref_name }}-windows-${{ matrix.arch }} `
161159
--target ${{ matrix.arch }}-pc-windows-msvc `
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
160+
wasmtime-cli wasm-component-ld wasm-tools wit-bindgen-cli
169161
170162
- name: upload-artifact
171163
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.5.0`
7-
- `wasm-tools`: `v1.206.0`
8-
- `wasmtime-cli`: `v20.0.1`
9-
- `wit-bindgen-cli`: `v0.24.0`
6+
- `wasm-component-ld`: `v0.5.2`
7+
- `wasm-tools`: `v1.208.1`
8+
- `wasmtime-cli`: `v21.0.0`
9+
- `wit-bindgen-cli`: `v0.25.0`
1010
- `wizer`: `v6.0.0-git`

build.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,18 @@ set -eu
44

55
cargo install \
66
--all-features \
7-
--config 'profile.release.lto = "thin"' \
87
--config 'profile.release.strip = "symbols"' \
98
--root "$PWD" \
10-
--git https://github.com/type-dance/wizer.git \
9+
--git https://github.com/TerrorJack/wizer.git \
1110
wizer ${1+"$@"}
1211

1312
cargo install \
1413
--all-features \
15-
--config 'profile.release.lto = "thin"' \
1614
--config 'profile.release.strip = "symbols"' \
1715
--root "$PWD" \
1816
wasm-component-ld wasm-tools wit-bindgen-cli ${1+"$@"}
1917

2018
cargo install \
21-
--features winch \
22-
--config 'profile.release.lto = "thin"' \
19+
--all-features \
2320
--root "$PWD" \
2421
wasmtime-cli ${1+"$@"}

0 commit comments

Comments
 (0)