From d11b953172b3413317273d1a06c6068d2bef307c Mon Sep 17 00:00:00 2001 From: samlhuillier Date: Tue, 5 Dec 2023 17:27:08 -0600 Subject: [PATCH] update build to run on m1 macs --- .github/workflows/build.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 738a521c..ced38b0e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,11 +7,17 @@ on: jobs: build_and_package: - runs-on: ${{ matrix.os }} - strategy: matrix: - os: [windows-latest, ubuntu-latest, macOS-latest] + include: + - os: macos-latest + arch: x64 + - os: macos-11 + arch: arm64 + - os: windows-latest + - os: ubuntu-latest + + runs-on: ${{ matrix.os }} steps: - name: Checkout code