From ec109e0f105c8c705968bd124528b21a24c558fe Mon Sep 17 00:00:00 2001 From: dmunozv04 <39565245+dmunozv04@users.noreply.github.com> Date: Sun, 15 Dec 2024 14:00:46 +0100 Subject: [PATCH] Fix x86_64 macOS and test aarch64-windows --- .github/workflows/release.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe62472..017bc62 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,20 +76,24 @@ jobs: release_suffix: aarch64-linux # Windows - target: x86_64-pc-windows-msvc - os: windows-2022 + os: windows-latest release_suffix: x86_64-windows + - target: aarch64-pc-windows-msvc + os: windows-latest + cross: true + release_suffix: aarch64-windows # macOS - target: aarch64-apple-darwin - os: macos-14 + os: macos-latest release_suffix: aarch64-osx - target: x86_64-apple-darwin - os: macos-12 + os: macos-latest + cross: true release_suffix: x86_64-osx env: PYAPP_PASS_LOCATION: "1" PYAPP_UV_ENABLED: "1" - PYAPP_DISTRIBUTION_VARIANT_CPU: "v1" HATCH_BUILD_LOCATION: dist CARGO: cargo CARGO_BUILD_TARGET: ${{ matrix.job.target }}