Skip to content

Commit

Permalink
ci: retag the musl arm for manylinux2014
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed May 16, 2024
1 parent 0a055b7 commit 9a2f6f7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,9 @@ jobs:
args: --release --locked --out dist --features self-update
docker-options: ${{ matrix.platform.maturin_docker_options }}
rust-toolchain: ${{ matrix.platform.toolchain || 'stable' }}
- name: Retag wheel
if: matrix.platform.target == 'aarch64-unknown-linux-musl'
run: pipx run wheel tags --remove --platform-tag +manylinux_2_17_aarch64.manylinux2014_aarch64 uv-*-py3-none-musllinux_1_1_aarch64.whl
- uses: uraimo/run-on-arch-action@v2
name: Test wheel
with:
Expand All @@ -591,6 +594,19 @@ jobs:
python -m venv .venv
.venv/bin/pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
.venv/bin/${{ env.MODULE_NAME }} --help
- uses: uraimo/run-on-arch-action@v2
name: Test wheel (manylinux)
with:
arch: armv6
distro: ubuntu20.04
githubToken: ${{ github.token }}
install: |
apt-get update
apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip
run: |
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
${{ env.MODULE_NAME }} --help
- name: "Upload wheels"
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 9a2f6f7

Please sign in to comment.