From 34a87e45fa9f9b8cca835893bff87aac946ee403 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Mon, 21 Oct 2024 09:47:43 +0200 Subject: [PATCH] [ci] ensure x86_64 wheels still get build usign old GH macos-13 runner image the latest macos runners 14 and above use arm64 platform by default. --- .github/workflows/wheels.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 614e08537..d03399b5b 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -47,8 +47,10 @@ jobs: shell: bash strategy: fail-fast: false + # macos-13 runners are still x86_64, macos-14 (latest) are arm64; we want to build + # the x86_64 wheel on/for x86_64 macs matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-13, windows-latest, ubuntu-latest] arch: [auto64] include: - os: macos-latest