-
-
Notifications
You must be signed in to change notification settings - Fork 552
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove redundant ubuntu OSes (they build the same wheels) - Remove macos-12 useless condition - Add `CIBW_BUILD_VERBOSITY: 2` for more informative logs
- Loading branch information
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,7 @@ jobs: | |
matrix: | ||
os: | ||
[ | ||
ubuntu-20.04, | ||
ubuntu-22.04, | ||
ubuntu-24.04, | ||
ubuntu-latest, | ||
windows-2019, | ||
windows-2022, | ||
macos-13, | ||
|
@@ -34,7 +32,7 @@ jobs: | |
toolchain: nightly | ||
|
||
- run: rustup target add aarch64-apple-darwin && rustup target add x86_64-apple-darwin | ||
if: matrix.os == 'macos-12' || matrix.os == 'macos-13' || matrix.os == 'macos-14' | ||
if: matrix.os == 'macos-13' || matrix.os == 'macos-14' | ||
|
||
- run: rustup toolchain install stable-i686-pc-windows-msvc | ||
if: matrix.os == 'windows-2019' || matrix.os == 'windows-2022' | ||
|
@@ -52,6 +50,7 @@ jobs: | |
uses: pypa/[email protected] | ||
timeout-minutes: 720 | ||
env: | ||
CIBW_BUILD_VERBOSITY: 2 | ||
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*" | ||
CIBW_ARCHS_LINUX: "x86_64 i686 aarch64" | ||
# CIBW_ARCHS_MACOS: "x86_64 arm64" | ||
|