From 78bd778222ee18b93035e13233058ff566cce4c9 Mon Sep 17 00:00:00 2001 From: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com> Date: Sun, 9 Feb 2025 15:33:18 +0100 Subject: [PATCH] add macos matrix --- .github/workflows/qt5_6.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/qt5_6.yml b/.github/workflows/qt5_6.yml index 2ec66d11..4a63fd6a 100644 --- a/.github/workflows/qt5_6.yml +++ b/.github/workflows/qt5_6.yml @@ -99,8 +99,13 @@ jobs: ###################### macOS: - name: 🍏 macOS x64 - runs-on: macos-latest + name: 🍏 macOS ${{ matrix.architecture }} + runs-on: ${{ matrix.architecture == 'arm64' && 'macos-14' || 'macos-13' }} + strategy: + fail-fast: false + matrix: + architecture: [ arm64, x64 ] + steps: - name: ⬇ Checkout uses: actions/checkout@v4 @@ -136,7 +141,7 @@ jobs: name: ${{ inputs.event_name == 'pull_request' && env.NAME || format('artifact-{0}', env.NAME) }} path: 'build/Hyperion-*' env: - NAME: ${{ inputs.qt_version == '6' && 'macOS_x64_qt6' || 'macOS_x64' }} + NAME: ${{ inputs.qt_version == '6' && format('macOS_{0}_qt6', matrix.architecture) || format('macOS_{0}', matrix.architecture) }} ###################### ###### Windows #######