Skip to content

Commit

Permalink
Exclude ppc64le musl
Browse files Browse the repository at this point in the history
  • Loading branch information
hombit committed Dec 22, 2022
1 parent f0f81d0 commit 0bd12cf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,16 @@ jobs:
platform: musllinux
- interpreter: pp39
platform: musllinux
# PyPy doesn't support ppc64le
# PyPy doesn't support PPC64le
- arch: ppc64le
interpreter: pp37
- arch: ppc64le
interpreter: pp38
- arch: ppc64le
interpreter: pp39
# There is no Rust toolchain for PPC64le with MUSL
- arch: ppc64le
platform: musllinux
# x86_64 is the only supported architecture for macOS
- os: macos-11
arch: aarch64
Expand Down
8 changes: 7 additions & 1 deletion light-curve/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,18 +111,24 @@ test-requires = [
# We use our own images which include Rust, GSL and platform-optimised FFTW
# Manylinux CPython
manylinux-aarch64-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_aarch64"
# not supported
#manylinux-i686-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_i686"
manylinux-ppc64le-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_ppc64le"
# not supported
# manylinux-s390x-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_s390x"
manylinux-x86_64-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_x86_64"
# Manylinux PyPy
manylinux-pypy_aarch64-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_aarch64"
# not supported
#manylinux-pypy_i686-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_i686"
manylinux-pypy_x86_64-image = "ghcr.io/light-curve/base-docker-images/manylinux2014_x86_64"
# Musllinux
musllinux-aarch64-image = "ghcr.io/light-curve/base-docker-images/musllinux_1_1_aarch64"
# not supported
#musllinux-i686-image = "ghcr.io/light-curve/base-docker-images/musllinux_1_1_i686"
musllinux-ppc64le-image = "ghcr.io/light-curve/base-docker-images/musllinux_1_1_ppc64le"
# no Rust toolchain, not supported
# musllinux-ppc64le-image = "ghcr.io/light-curve/base-docker-images/musllinux_1_1_ppc64le"
# not supported
# musllinux-s390x-image = "ghcr.io/light-curve/base-docker-images/musllinux_1_1_s390x"
musllinux-x86_64-image = "ghcr.io/light-curve/base-docker-images/musllinux_1_1_x86_64"

Expand Down

0 comments on commit 0bd12cf

Please sign in to comment.