From abe5f5f6fe98e4e56d7673c899caf6fd967e27b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Ruiz?= Date: Fri, 4 Oct 2024 11:09:14 +0200 Subject: [PATCH] Enable assembly of ARM packages (#444) --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9afe6c40034fe..e740a1dab3ed2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ on: architecture: description: '[ "x64", "arm64" ]' type: string - default: '[ "x64" ]' + default: '[ "x64", "arm64" ]' checksum: description: "Checksum ?" type: boolean @@ -56,7 +56,7 @@ on: architecture: description: '[ "x64", "arm64" ]' type: string - default: '[ "x64" ]' + default: '[ "x64", "arm64" ]' checksum: description: "Checksum ?" type: boolean @@ -88,7 +88,7 @@ on: jobs: matrix: name: Set up matrix - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: matrix: ${{ steps.setup.outputs.matrix }} steps: @@ -103,7 +103,7 @@ jobs: build: needs: [matrix] - runs-on: ubuntu-latest + runs-on: ${{ matrix.architecture == 'arm64' && 'wz-linux-arm64' || 'ubuntu-22.04' }} strategy: fail-fast: false matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}