Skip to content

Commit

Permalink
Merge pull request #27 from URenko/master
Browse files Browse the repository at this point in the history
build wheels for Linux on arm64
  • Loading branch information
olokelo authored May 7, 2024
2 parents de20bc6 + 53d5049 commit c610bde
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,22 @@ jobs:
if: runner.os == 'Linux'
- name: Print info
run: ldd --version && uname -a
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: auto aarch64
- uses: actions/upload-artifact@master
with:
name: wheelhouse-${{ matrix.os }}
Expand All @@ -60,9 +67,9 @@ jobs:
os: [ubuntu-22.04]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
Expand Down

0 comments on commit c610bde

Please sign in to comment.