File tree Expand file tree Collapse file tree 2 files changed +24
-11
lines changed Expand file tree Collapse file tree 2 files changed +24
-11
lines changed Original file line number Diff line number Diff line change 27
27
- name : checkout
28
28
uses : actions/checkout@v4
29
29
30
+ - name : build-image
31
+ run : |
32
+ pushd "$(mktemp -d)"
33
+ curl -f -L --retry 5 https://github.com/tweag/rust-alpine-mimalloc/archive/refs/heads/master.tar.gz | tar xz --strip-components=1
34
+ podman build \
35
+ --arch ${{ matrix.arch }} \
36
+ --network host \
37
+ --pull \
38
+ --squash-all \
39
+ --tag rust:alpine-mimalloc \
40
+ .
41
+ popd
42
+
30
43
- name : build
31
44
run : |
32
45
podman run \
@@ -38,14 +51,14 @@ jobs:
38
51
--tmpfs /tmp:exec \
39
52
--volume $PWD:/workspace \
40
53
--workdir /workspace \
41
- chimeralinux/chimera \
42
- sh -c 'apk add cargo libatomic-chimera-devel-static libcxx-devel-static musl-devel-static && TARGET=$(rustc -vV | sed -n "s|host: ||p") && exec ./build.sh --target $TARGET'
43
-
44
- ./bin/wasm-component-ld --help
45
- ./bin/wasm-tools --version
46
- ./bin/wasmtime --version
47
- ./bin/wit-bindgen --version
48
- ./bin/wizer --version
54
+ rust:alpine-mimalloc \
55
+ sh -c 'TARGET=$(rustc -vV | sed -n "s|host: ||p") && exec ./build.sh --target $TARGET'
56
+
57
+ MIMALLOC_VERBOSE=1 ./bin/wasm-component-ld --help
58
+ MIMALLOC_VERBOSE=1 ./bin/wasm-tools --version
59
+ MIMALLOC_VERBOSE=1 ./bin/wasmtime --version
60
+ MIMALLOC_VERBOSE=1 ./bin/wit-bindgen --version
61
+ MIMALLOC_VERBOSE=1 ./bin/wizer --version
49
62
50
63
file ./bin/wasm-component-ld
51
64
file ./bin/wasm-tools
Original file line number Diff line number Diff line change 3
3
Static builds of ` wasm-tools ` , ` wasmtime-cli ` , ` wizer ` for
4
4
{x86_64,aarch64}-{linux,darwin,windows}:
5
5
6
- - ` wasm-component-ld ` : ` v0.5.4 `
7
- - ` wasm-tools ` : ` v1.213 .0 `
6
+ - ` wasm-component-ld ` : ` v0.5.5 `
7
+ - ` wasm-tools ` : ` v1.214 .0 `
8
8
- ` wasmtime-cli ` : ` v22.0.0 `
9
- - ` wit-bindgen-cli ` : ` v0.27 .0 `
9
+ - ` wit-bindgen-cli ` : ` v0.28 .0 `
10
10
- ` wizer ` : ` v6.0.0-git `
You can’t perform that action at this time.
0 commit comments