From 6460ff3dd57fb11bf82af496b3415f22392c394f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 May 2024 11:48:29 -0400 Subject: [PATCH] [ci] Move Python wheel-builds from `macos-11,macos-12` to `macos-12,macos-latest` (#2491) (#2607) * [ci] Try wheel-build on `macos-latest` [skip ci] * debug [skip-ci] Co-authored-by: John Kerl --- .github/workflows/python-packaging.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-packaging.yml b/.github/workflows/python-packaging.yml index fddefe662a..2858f92e74 100644 --- a/.github/workflows/python-packaging.yml +++ b/.github/workflows/python-packaging.yml @@ -53,7 +53,7 @@ jobs: cibw_build: 'cp3*-manylinux_x86_64' platform: manylinux2014 wheel_name: manylinux2014 - - os: macos-12 + - os: macos-14 cibw_build: 'cp3*-macosx_x86_64' cibw_archs_macos: x86_64 platform: macosx @@ -104,7 +104,7 @@ jobs: arch: x86_64 cc: gcc-11 cxx: g++-11 - - os: macos-12 + - os: macos-14 platform: macosx arch: x86_64 cc: clang @@ -135,6 +135,8 @@ jobs: set -x ls -lR ls -lR wheels-* + echo matrix.platform: ${{ matrix.platform }} + echo matrix.arch: ${{ matrix.arch }} WHL=$(find . -name 'tiledbsoma-*-cp311-cp311-*${{ matrix.platform }}*_${{ matrix.arch }}.whl') if [ -z "$WHL" ]; then echo "No wheel found"; exit 1; fi unzip -l $WHL