Skip to content

Commit

Permalink
rm pp and musllinux build
Browse files Browse the repository at this point in the history
  • Loading branch information
j042 committed Jul 26, 2024
1 parent fb252d6 commit b422353
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ jobs:

linux_wheel:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [x86_64]
cw_build: ["cp*manylinux*", "pp*manylinux*", "*musllinux*"]


steps:
- uses: actions/checkout@v3
Expand All @@ -54,8 +49,8 @@ jobs:
- name: build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.cw_build }}
CIBW_ARCHS: x86_64
CIBW_BUILD: "cp*manylinux*"

- uses: actions/upload-artifact@v3
with:
Expand All @@ -66,14 +61,7 @@ jobs:
strategy:
matrix:
arch: [aarch64, ppc64le]
cw_build: ["cp37*many*", "cp38*many*", "cp39*many*", "cp310*many*", "cp311*many*", "cp312*many*", "pp37*many*", "pp38*many*", "pp39*many*"]
exclude:
- arch: ppc64le
cw_build: "pp37*many*"
- arch: ppc64le
cw_build: "pp38*many*"
- arch: ppc64le
cw_build: "pp39*many*"
cw_build: ["cp37*many*", "cp38*many*", "cp39*many*", "cp310*many*", "cp311*many*", "cp312*many*"]

steps:
- uses: actions/checkout@v3
Expand All @@ -91,7 +79,7 @@ jobs:
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.cw_build }}
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x}"
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le}"

- uses: actions/upload-artifact@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ test-command = "python {project}/tests/test_init_and_query.py"
file = "README.md"
content-type = "text/markdown"

[tool.cibuildwheel.macos]
skip = "pp*"

[tool.cibuildwheel.linux]
skip = "pp*"

[tool.cibuildwheel.windows]
skip = "pp*"

Expand Down

0 comments on commit b422353

Please sign in to comment.