From ef526ef056bd9362ad9b1546071afaef0a5baeb7 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Sat, 26 Oct 2024 17:49:02 +0200 Subject: [PATCH] revert cibuildwheel changes --- .github/workflows/python-cibuildwheel.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index 81c220503..e978498e6 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -13,19 +13,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04, macos-14] + os: [ubuntu-22.04, macos-12] # 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 + - os: macos-12 target: musl - os: ubuntu-22.04 target: musl flavor: pypy - - os: macos-14 + - os: macos-12 arch: arm64 flavor: pypy steps: @@ -97,7 +97,7 @@ jobs: PACKAGES=( icu4c xz lz4 zstd zlib snappy boost ) for PACKAGE in "${PACKAGES[@]}" do - response=$(arm64-homebrew/bin/brew fetch --force --bottle-tag=arm64_sonoma $PACKAGE | grep Downloaded ) + response=$(arm64-homebrew/bin/brew fetch --force --bottle-tag=arm64_monterey $PACKAGE | grep Downloaded ) download_path=$(echo $response | xargs -n 1 | tail -1) arm64-homebrew/bin/brew reinstall -vd $download_path done