forked from K0lb3/etcpak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix gh action workflow and build issues
1
- Loading branch information
Showing
2 changed files
with
12 additions
and
13 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
strategy: | ||
matrix: | ||
# macos-13 is an intel runner, macos-14 is apple silicon | ||
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | ||
os: [ubuntu-latest, windows-latest, macos-13] | ||
cp: ["cp37", "cp38", "cp39", "cp310", "cp311", "cp312", "cp313"] | ||
|
||
name: Build ${{ matrix.cp }} wheels on ${{ matrix.os }} | ||
|
@@ -48,19 +48,17 @@ jobs: | |
uses: joerick/[email protected] | ||
env: | ||
CIBW_ARCHS_LINUX: auto aarch64 | ||
CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | ||
CIBW_ARCHS_MACOS: x86_64 arm64 | ||
CIBW_BUILD: | | ||
${{ matrix.cp }}-manylinux_x86_64 | ||
${{ matrix.cp }}-manylinux_i686 | ||
${{ matrix.cp }}-manylinux_aarch64 | ||
${{ matrix.cp }}-win_amd64 | ||
${{ matrix.cp }}-win32 | ||
${{ matrix.cp }}-macosx_x86_64 | ||
${{ matrix.cp }}-macosx_arm64 | ||
${{ matrix.cp }}-macosx_universal2 | ||
CIBW_TEST_REQUIRES: setuptools pytest pillow imagehash texture2ddecoder | ||
CIBW_TEST_COMMAND: pytest -v -s {package}/tests | ||
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64 *-win32 *_i686" | ||
CIBW_TEST_SKIP: "*-macosx* *-manylinux_i686 *-win32" | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
|
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