Skip to content

Commit

Permalink
Use manylinux
Browse files Browse the repository at this point in the history
  • Loading branch information
ermakov-oleg committed Aug 6, 2024
1 parent a426bdc commit 867700b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,22 @@ jobs:
platform:
- runner: ubuntu-latest
target: x86_64
before-script: yum install clang llvm llvm-devel -y
- runner: ubuntu-latest
target: aarch64
before-script: apt-get update && apt-get install -y libclang-dev
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
working-directory: cli
args: --release --out dist
sccache: "true"
args: --release --out dist -vv
manylinux: manylinux_2_28
# https://github.com/PyO3/maturin-action/issues/249
# sccache: "true"
before-script-linux: ${{ matrix.platform.before-script }}
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 867700b

Please sign in to comment.