diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 1a30ae36..155923f7 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -20,6 +20,11 @@ jobs: platform: - runner: ubuntu-latest target: x86_64 + manylinux: manylinux_2_28 + 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 @@ -28,7 +33,8 @@ jobs: target: ${{ matrix.platform.target }} working-directory: cli args: --release --out dist - sccache: "true" + manylinux: ${{ matrix.platform.manylinux }} + before-script-linux: ${{ matrix.platform.before-script }} - name: Upload wheels uses: actions/upload-artifact@v4 with: