Skip to content

Commit 588dee0

Browse files
authored
docs: include Windows ARM in examples (#2468)
docs: include Windows ARM
1 parent 9c53c4e commit 588dee0

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ${{ matrix.os }}
8989
strategy:
9090
matrix:
91-
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-latest]
91+
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-latest]
9292

9393
steps:
9494
- uses: actions/checkout@v4

examples/github-deploy.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,21 @@ jobs:
1616
runs-on: ${{ matrix.runs-on }}
1717
strategy:
1818
matrix:
19-
os: [ linux-intel, linux-arm, windows, macOS-intel, macOS-arm, iOS, pyodide ]
2019
include:
21-
- archs: auto
22-
platform: auto
2320
- os: linux-intel
2421
runs-on: ubuntu-latest
2522
- os: linux-arm
2623
runs-on: ubuntu-24.04-arm
27-
- os: windows
24+
- os: windows-intel
2825
runs-on: windows-latest
26+
- os: windows-arm
27+
runs-on: windows-11-arm
2928
- os: macos-intel
3029
# macos-13 was the last x86_64 runner
3130
runs-on: macos-13
3231
- os: macos-arm
3332
# macos-14+ (including latest) are ARM64 runners
3433
runs-on: macos-latest
35-
archs: auto,universal2
3634
- os: ios
3735
runs-on: macos-latest
3836
platform: ios
@@ -46,8 +44,7 @@ jobs:
4644
- name: Build wheels
4745
uses: pypa/[email protected]
4846
env:
49-
CIBW_PLATFORM: ${{ matrix.platform }}
50-
CIBW_ARCHS: ${{ matrix.archs }}
47+
CIBW_PLATFORM: ${{ matrix.platform || 'auto' }}
5148
# Can also be configured directly, using `with:`
5249
# with:
5350
# package-dir: .

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# macos-13 is an intel runner, macos-14 is apple silicon
12-
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14]
12+
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
1313

1414
steps:
1515
- uses: actions/checkout@v4

examples/github-pipx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# macos-13 is an intel runner, macos-14 is apple silicon
12-
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
12+
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
1313

1414
steps:
1515
- uses: actions/checkout@v4

examples/github-with-qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# macos-13 is an intel runner, macos-14 is apple silicon
12-
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14]
12+
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
1313

1414
steps:
1515
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)