From aa99a339ff58599758f9d2b4c383a0518c91c321 Mon Sep 17 00:00:00 2001 From: Cristiano Rodrigues Date: Fri, 5 Dec 2025 01:59:54 +0000 Subject: [PATCH] fix(ci): remove linux-arm64 build target from release workflow - Remove linux-arm64 from build matrix - Remove cross-compilation toolchain step - Simplify release to 4 platforms: linux-x64, win-x64, osx-x64, osx-arm64 --- .github/workflows/release.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9776255..00fd4eb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,9 +14,6 @@ jobs: - os: ubuntu-latest runtime: linux-x64 artifact: nfury-linux-x64 - - os: ubuntu-latest - runtime: linux-arm64 - artifact: nfury-linux-arm64 - os: windows-latest runtime: win-x64 artifact: nfury-win-x64 @@ -35,12 +32,6 @@ jobs: with: dotnet-version: "10.0.x" - - name: Install cross-compilation tools (Linux ARM64) - if: matrix.runtime == 'linux-arm64' - run: | - sudo apt-get update - sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu - - name: Restore dependencies run: dotnet restore