From 46597421d9f1e67cc92f2b32b9c94728563cec7e Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Sun, 20 Oct 2024 16:04:30 +0200 Subject: [PATCH] disable macos-14 --- .github/workflows/python-cibuildwheel-pybind.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/python-cibuildwheel-pybind.yml b/.github/workflows/python-cibuildwheel-pybind.yml index 2c956362d..597444e56 100644 --- a/.github/workflows/python-cibuildwheel-pybind.yml +++ b/.github/workflows/python-cibuildwheel-pybind.yml @@ -13,21 +13,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04, macos-14] + os: [ubuntu-22.04] # separate archs, so they use individual caches arch: [ 'x86_64', 'arm64' ] flavor: ['cpython', 'pypy'] # separate musl and many on linux, for mac we just skip one of those target: [ 'many', 'musl' ] exclude: - - os: macos-14 - target: musl - os: ubuntu-22.04 target: musl flavor: pypy - - os: macos-14 - arch: arm64 - flavor: pypy steps: - uses: actions/checkout@v4 - name: Set up QEMU