Skip to content

Commit

Permalink
try fewer
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Oct 18, 2024
1 parent 944712b commit 26d10c6
Showing 1 changed file with 8 additions and 21 deletions.
29 changes: 8 additions & 21 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,10 @@ concurrency:

jobs:
linux:
runs-on: ${{ matrix.platform.runner }}
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
- runner: ubuntu-latest
target: x86
- runner: ubuntu-latest
target: aarch64
# Not supported in manylinux 2_28?
# - runner: ubuntu-latest
# target: armv7
- runner: ubuntu-latest
target: s390x
- runner: ubuntu-latest
target: ppc64le
target: [x86_64, aarch64, armv7l]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -45,17 +32,17 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path object-store-rs/Cargo.toml
sccache: "true"
manylinux: manylinux_2_28
before-script-linux: |
yum update -y
yum install openssl openssl-devel perl-IPC-Cmd -y
manylinux: auto
# before-script-linux: |
# yum update -y
# yum install openssl openssl-devel perl-IPC-Cmd -y
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}-object-store-rs
name: wheels-linux-${{ matrix.target }}-object-store-rs
path: dist

musllinux:
Expand Down

0 comments on commit 26d10c6

Please sign in to comment.