Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--.github/workflows/release.yml16
1 files changed, 7 insertions, 9 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index d6901fbe..97cc2b04 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -58,7 +58,7 @@ jobs:
strategy:
fail-fast: false # don't fail other jobs if one fails
matrix:
- build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc
+ build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows, aarch64-macos] #, x86_64-win-gnu, win32-msvc
include:
- build: x86_64-linux
# WARN: When changing this to a newer version, make sure that the GLIBC isnt too new, as this can cause issues
@@ -73,11 +73,6 @@ jobs:
rust: stable
target: aarch64-unknown-linux-gnu
cross: false
- # - build: riscv64-linux
- # os: ubuntu-22.04
- # rust: stable
- # target: riscv64gc-unknown-linux-gnu
- # cross: true
- build: x86_64-macos
os: macos-latest
rust: stable
@@ -88,13 +83,16 @@ jobs:
rust: stable
target: x86_64-pc-windows-msvc
cross: false
- # 23.03: build issues
- build: aarch64-macos
os: macos-latest
rust: stable
target: aarch64-apple-darwin
cross: false
- skip_tests: true # x86_64 host can't run aarch64 code
+ # - build: riscv64-linux
+ # os: ubuntu-22.04
+ # rust: stable
+ # target: riscv64gc-unknown-linux-gnu
+ # cross: true
# - build: x86_64-win-gnu
# os: windows-2019
# rust: stable-x86_64-gnu
@@ -216,7 +214,7 @@ jobs:
shell: bash
run: |
mkdir -p dist
- if [ "${{ matrix.os }}" = "windows-2019" ]; then
+ if [ "${{ matrix.os }}" = "windows-latest" ]; then
cp "target/${{ matrix.target }}/opt/hx.exe" "dist/"
else
cp "target/${{ matrix.target }}/opt/hx" "dist/"