Skip to content

Commit

Permalink
ci: don't build for Windows ARM.
Browse files Browse the repository at this point in the history
Cross-compilation for Windows ARM is also failing. Cross-compiling to Linux and Windows ARM requires more investigation and testing.
  • Loading branch information
plusvic committed Feb 3, 2025
1 parent 3e67906 commit f443992
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- macos-arm
- macos-intel
- windows
- windows-arm
include:
- build: linux
os: ubuntu-latest
Expand All @@ -37,10 +36,6 @@ jobs:
os: windows-latest
target: x86_64-pc-windows-msvc

- build: windows-arm
os: windows-latest
target: aarch64-pc-windows-msvc

steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down Expand Up @@ -122,7 +117,7 @@ jobs:

- build: windows
os: windows-latest
arch: 'x86 AMD64 ARM64'
arch: 'x86 AMD64'

steps:
- name: Checkout sources
Expand Down Expand Up @@ -150,9 +145,6 @@ jobs:
- run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
if: matrix.build == 'macos'

- run: rustup target add aarch64-pc-windows-msvc
if: matrix.build == 'windows'

- name: Install Python dependencies
run: pip install -U setuptools wheel twine cibuildwheel platformdirs

Expand Down

0 comments on commit f443992

Please sign in to comment.