Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ jobs:
fail-fast: false
matrix:
# macos-13 is an intel runner, macos-latest is apple silicon
os: [macos-13, macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest]
os:
[
macos-13,
macos-latest,
ubuntu-latest,
ubuntu-24.04-arm,
windows-latest,
windows-11-arm,
]
env:
SCCACHE_VERSION: 0.2.13
GITHUB_WORKSPACE: "${{github.workspace}}"
Expand All @@ -25,6 +33,7 @@ jobs:
cache: pip
cache-dependency-path: "pyproject.toml"
python-version: "3.12"
- uses: dtolnay/rust-toolchain@stable # zizmor: ignore[unpinned-uses]
- name: Set MACOSX_DEPLOYMENT_TARGET for Intel MacOS
if: matrix.os == 'macos-13'
run: >-
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ environment = { PATH = "$PATH:$HOME/.cargo/bin", LIBCST_NO_LOCAL_SCHEME="1" }
skip = [
"pp*",
"*-win32",
"*-win_arm64",
"*-musllinux_i686",
"*-musllinux_ppc64le",
"*-musllinux_s390x",
Expand All @@ -105,4 +104,4 @@ before-all = "yum install -y libatomic; curl https://sh.rustup.rs -sSf | env -u
before-all = "rustup target add aarch64-apple-darwin x86_64-apple-darwin"

[tool.cibuildwheel.windows]
before-all = "rustup target add x86_64-pc-windows-msvc i686-pc-windows-msvc"
before-all = "rustup target add x86_64-pc-windows-msvc i686-pc-windows-msvc aarch64-pc-windows-msvc"
Loading