From 700458b74b0fc98c6f09eced29582349a1d83fa1 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Sun, 15 Sep 2024 22:19:35 -0500 Subject: [PATCH] ci: Add aarch64 macOS wheel builds * Add macos-14 runners for auto64 archs. * Add libtool to brew install list. --- .github/workflows/wheels.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index ece5d47..4a96d71 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -30,7 +30,7 @@ jobs: fail-fast: false matrix: python: [38, 39, 310, 311, 312] - os: [ubuntu-latest, macos-13] + os: [ubuntu-latest, macos-13, macos-14] arch: [auto64] include: - python: 38 @@ -62,8 +62,7 @@ jobs: - name: Install compiler tools on macOS if: runner.os == 'macOS' run: | - brew install make automake swig mpfr boost - export PATH="/usr/local/opt/make/libexec/gnubin:$PATH" + brew install make automake swig mpfr boost libtool - name: Clone gmp if: runner.os == 'macOS'