Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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