Skip to content

Commit

Permalink
change runner
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlend committed Aug 22, 2024
1 parent 55e427a commit 73a4129
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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"'
Expand Down

0 comments on commit 73a4129

Please sign in to comment.