From 73a41292cfeb38685f2ffeeea4f1a4e9b1588d1a Mon Sep 17 00:00:00 2001 From: Dar Dahlen Date: Wed, 21 Aug 2024 21:47:00 -0700 Subject: [PATCH] change runner --- .github/workflows/release-wheels.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-wheels.yml b/.github/workflows/release-wheels.yml index 35a9749..f4d6ec8 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.include.platform_id }}-${{ matrix.include.manylinux_image }} - runs-on: ${{ matrix.include.os }} + name: Build wheel for cp${{ matrix.python }}-${{ matrix.platform_id }}-${{ matrix.manylinux_image }} + runs-on: ${{ matrix.os }} timeout-minutes: 30 strategy: # Ensure that a wheel builder finishes even if another fails @@ -23,7 +23,7 @@ jobs: python: [310, 311, 312] include: # Window 64 bit - - os: windows-2019 + - os: windows-latest platform_id: win_amd64 # Linux 64 bit manylinux2014 @@ -49,10 +49,10 @@ jobs: python3 -m pip install cibuildwheel - name: Build wheels env: - CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.include.platform_id }} + CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }} CIBW_ARCHS: all - CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.include.manylinux_image }} - CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.include.manylinux_image }} + CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_image }} + CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.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"'