From 15e7ddc79dd1b2dd92936d2f5e8ebad40f5ba09c Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Sun, 17 Nov 2024 16:54:28 +0200 Subject: [PATCH] arm --- .github/workflows/version.yml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index dc981e9..342f494 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -45,6 +45,29 @@ jobs: TYPE: ${{ inputs.type }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + linux-cross: + name: build linux + runs-on: ubuntu-latest + strategy: + matrix: + target: [aarch64, ppc64] + needs: [bump] + steps: + - uses: actions/checkout@v4 + with: + ref: version-${{ needs.bump.outputs.version }} + - uses: PyO3/maturin-action@v1.42.1 + with: + target: ${{ matrix.target }} + manylinux: auto + command: build + args: --release --sdist -o dist --find-interpreter + - name: Upload wheels + uses: actions/upload-artifact@v4 + with: + name: wheels-linux + path: dist + linux: name: build linux runs-on: ubuntu-latest @@ -104,7 +127,7 @@ jobs: name: Release runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') || (github.event_name == 'workflow_dispatch') - needs: [macos, windows, linux] + needs: [macos, windows, linux, linux-cross] steps: - uses: actions/download-artifact@v4 with: