From 55e427aa4676c3f6823d6872a5072721ac29aa6d Mon Sep 17 00:00:00 2001 From: Dar Dahlen Date: Wed, 21 Aug 2024 21:39:36 -0700 Subject: [PATCH] include --- .github/workflows/release-wheels.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-wheels.yml b/.github/workflows/release-wheels.yml index 56f668e..35a9749 100644 --- a/.github/workflows/release-wheels.yml +++ b/.github/workflows/release-wheels.yml @@ -13,8 +13,8 @@ concurrency: cancel-in-progress: true jobs: build_wheels: - name: Build wheel for cp${{ matrix.python }}-${{ matrix.platform_id }}-${{ matrix.manylinux_image }} - runs-on: ${{ matrix.os }} + name: Build wheel for cp${{ matrix.python }}-${{ matrix.include.platform_id }}-${{ matrix.include.manylinux_image }} + runs-on: ${{ matrix.include.os }} timeout-minutes: 30 strategy: # Ensure that a wheel builder finishes even if another fails @@ -49,10 +49,10 @@ jobs: python3 -m pip install cibuildwheel - name: Build wheels env: - CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }} + CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.include.platform_id }} CIBW_ARCHS: all - CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_image }} - CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.manylinux_image }} + CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.include.manylinux_image }} + CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.include.manylinux_image }} CIBW_TEST_SKIP: "*-macosx_arm64" CIBW_ENVIRONMENT: 'PATH="$HOME/.cargo/bin:$PATH" CARGO_TERM_COLOR="always"' CIBW_ENVIRONMENT_WINDOWS: 'PATH="$UserProfile\.cargo\bin;$PATH"'