Skip to content

Commit

Permalink
Enable zlib-rs on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Nov 18, 2024
1 parent 0aaa6ba commit fbe9caa
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:
*.tar.gz
*.sha256
# Like `linux-arm`, but use `--no-default-features` when building uv.
# Like `linux-arm`.
linux-s390x:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }}
runs-on: ubuntu-latest
Expand All @@ -377,7 +377,7 @@ jobs:
target: ${{ matrix.platform.target }}
manylinux: auto
docker-options: ${{ matrix.platform.maturin_docker_options }}
args: --release --locked --out dist --no-default-features --features self-update
args: --release --locked --out dist --features self-update
- uses: uraimo/run-on-arch-action@v2
if: matrix.platform.arch != 'ppc64'
name: Test wheel
Expand Down Expand Up @@ -420,8 +420,7 @@ jobs:
*.tar.gz
*.sha256
# Like `linux-arm`, but use `--no-default-features` when building uv,
# and install the `gcc-powerpc64-linux-gnu` package.
# Like `linux-arm`, but install the `gcc-powerpc64-linux-gnu` package.
linux-powerpc:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -452,7 +451,7 @@ jobs:
target: ${{ matrix.platform.target }}
manylinux: auto
docker-options: ${{ matrix.platform.maturin_docker_options }}
args: --release --locked --out dist --no-default-features --features self-update
args: --release --locked --out dist --features self-update
before-script-linux: |
if command -v yum &> /dev/null; then
yum update -y
Expand Down

0 comments on commit fbe9caa

Please sign in to comment.