Skip to content

Commit

Permalink
Add release artifacts for ARM64 Windows
Browse files Browse the repository at this point in the history
With #9266 Wasmtime should have full support for this platform. While
not tested in CI it can still be useful to build artifacts nonetheless
in case users are interested.

prtest:full
  • Loading branch information
alexcrichton committed Sep 19, 2024
1 parent 4e50ecc commit b208177
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/build-build-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ const array = [
"os": "ubuntu-latest",
"target": "x86_64-unknown-linux-musl",
},
{
"build": "aarch64-windows",
"os": "windows-latest",
"target": "aarch64-pc-windows-msvc",
},
];

const builds = [];
Expand Down
2 changes: 2 additions & 0 deletions ci/build-tarballs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ case $build in
fi
;;

# Skip the MSI for non-x86_64 builds of Windows
*-windows*)
x86_64-mingw*)
cp target/$target/release/wasmtime.exe tmp/$bin_pkgname/wasmtime$min.exe
fmt=zip
Expand Down

0 comments on commit b208177

Please sign in to comment.