Skip to content

Commit

Permalink
Merge pull request #233 from chayim/ck/eggies
Browse files Browse the repository at this point in the history
arm matrix
  • Loading branch information
saulshanabrook authored Nov 19, 2024
2 parents f1fb5b4 + 15e7ddc commit b3ead6f
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 @@ -107,7 +130,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 b3ead6f

Please sign in to comment.