From 840d9777a33031b07c0fd4438ba18dc49e0dd1ec Mon Sep 17 00:00:00 2001 From: dcvz Date: Sat, 25 May 2024 00:29:14 +0200 Subject: [PATCH] Include arm64 Linux --- .github/workflows/validate.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 774f0c4..b4ab477 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -10,10 +10,11 @@ concurrency: cancel-in-progress: true jobs: build-unix: - runs-on: ubuntu-22.04 + runs-on: ${{ matrix.os }} strategy: matrix: type: [ Debug, Release ] + os: [ ubuntu-22.04, blaze/ubuntu-22.04 ] # ubuntu-22.04 is intel, blaze/ubuntu-22.04 is arm64 steps: - name: Checkout uses: actions/checkout@v4 @@ -23,7 +24,7 @@ jobs: - name: ccache uses: hendrikmuhs/ccache-action@v1.2 with: - key: ${{ runner.os }}-z64re-ccache-${{ matrix.type }} + key: ${{ runner.os }}-z64re-ccache-${{ matrix.type }}-${{ matrix.os }} - name: Install Linux Dependencies if: runner.os == 'Linux' run: |