[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.
This commit is contained in:
Cosimo Lupo 2024-10-21 09:47:43 +02:00
parent e14868ed69
commit 34a87e45fa

View File

@ -47,8 +47,10 @@ jobs:
shell: bash shell: bash
strategy: strategy:
fail-fast: false 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: matrix:
os: [macos-latest, windows-latest, ubuntu-latest] os: [macos-13, windows-latest, ubuntu-latest]
arch: [auto64] arch: [auto64]
include: include:
- os: macos-latest - os: macos-latest