From c9f4c3cf35505413b89628a06b8c92fb6d45bb1e Mon Sep 17 00:00:00 2001 From: andreatramacere Date: Tue, 17 Dec 2024 16:18:45 +0100 Subject: [PATCH] update mac os version/arch --- .github/workflows/test-pip-workflow.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-pip-workflow.yml b/.github/workflows/test-pip-workflow.yml index df166641..5e7a218c 100644 --- a/.github/workflows/test-pip-workflow.yml +++ b/.github/workflows/test-pip-workflow.yml @@ -45,59 +45,66 @@ jobs: fail-fast: false matrix: include: + # MacOS x86_64 - os: macos-13 python: 310 cpython-version: 310 platform_id: macosx_x86_64 + cibw_arch: x86_64 - os: macos-13 python: 311 cpython-version: 311 platform_id: macosx_x86_64 + cibw_arch: x86_64 - os: macos-13 python: 312 cpython-version: 312 platform_id: macosx_x86_64 - - + cibw_arch: x86_64 + #linux - os: ubuntu-latest python: 310 cpython-version: 310 platform_id: manylinux_x86_64 cibw_manylinux: manylinux2014 - manylinux_image: manylinux2014 + cibw_arch: x86_64 + - os: ubuntu-latest python: 311 cpython-version: 311 platform_id: manylinux_x86_64 cibw_manylinux: manylinux2014 - manylinux_image: manylinux2014 + cibw_arch: x86_64 + - os: ubuntu-latest python: 312 cpython-version: 312 platform_id: manylinux_x86_64 cibw_manylinux: manylinux2014 - manylinux_image: manylinux2014 - + cibw_arch: x86_64 + # MacOS arm64 - os: macos-14 python: 310 cpython-version: 310 platform_id: macosx_arm64 + cibw_archs: arm64 - os: macos-14 python: 311 cpython-version: 311 platform_id: macosx_arm64 + cibw_archs: arm64 - os: macos-14 python: 312 cpython-version: 312 platform_id: macosx_arm64 + cibw_archs: arm64 - steps: - name: 'Clone Repository (Latest)' uses: actions/checkout@v4