From dd040818af64a4478e27510a4743398234eed9b0 Mon Sep 17 00:00:00 2001 From: Kyle Cesare Date: Mon, 5 Feb 2024 15:10:12 -0700 Subject: [PATCH] Add arm64 runner. --- .github/workflows/python.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index d0414ed..478c465 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -10,8 +10,10 @@ jobs: include: - os: ubuntu-latest target: x86_64 - - os: macos-latest + - os: macos-13 target: x86_64 + - os: macos-14 + target: arm64 steps: - name: checkout @@ -21,7 +23,8 @@ jobs: - name: symlink gfortran (macOS) if: runner.os == 'macOS' run: | - ln -s /usr/local/bin/gfortran-12 /usr/local/bin/gfortran + ln -sf /usr/local/bin/gfortran-12 /usr/local/bin/gfortran # MacOS 13 + ln -sf /opt/homebrew/bin/gfortran-12 /usr/local/bin/gfortran # MacOS 14 gfortran --version - uses: dtolnay/rust-toolchain@stable - uses: actions/setup-python@v4