Skip to content

Commit

Permalink
arm
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim committed Nov 17, 2024
1 parent 0a92570 commit 15e7ddc
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 15e7ddc

Please sign in to comment.