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 8bc59a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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
3 changes: 2 additions & 1 deletion ci/build-tarballs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ case $build in
fi
;;

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

0 comments on commit 8bc59a7

Please sign in to comment.