Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
metesynnada committed Jul 27, 2023
1 parent ffd1541 commit 1cb0490
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,33 @@ jobs:
name: dist
path: target/wheels/*


build-manylinux-aarch64:
needs: [ generate-license ]
name: Manylinux ARM64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rm LICENSE.txt
- name: Download LICENSE.txt
uses: actions/download-artifact@v3
with:
name: python-wheel-license
path: .
- run: cat LICENSE.txt
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Build wheels
run: docker buildx build --platform linux/arm64 -o type=wheelfile .
- name: Archive wheels
uses: actions/upload-artifact@v3
with:
name: dist
path: target/wheels/*


build-manylinux:
needs: [generate-license]
name: Manylinux
Expand Down

0 comments on commit 1cb0490

Please sign in to comment.