fix bas cli_as_callback implementation (#506) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test wheels ARM64 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
linux-build-arm64: | |
name: Build wheel for linux arm64 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare snap7 archive | |
uses: ./.github/actions/prepare_snap7 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
- name: Build wheel for aarch64 | |
uses: ./.github/actions/manylinux_2_28_aarch64 | |
with: | |
script: ./.github/build_scripts/build_package.sh | |
platform: manylinux_2_28_aarch64 | |
makefile: aarch64-linux-gnu.mk | |
python: /opt/python/cp38-cp38/bin/python | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels | |
path: wheelhouse/*.whl | |
test-wheels-arm64: | |
name: Testing wheel for arm64 | |
needs: linux-build-arm64 | |
continue-on-error: true | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: wheels | |
path: wheelhouse | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
- name: Run tests in docker:arm64v8 | |
run: | | |
docker run --rm --interactive -v $PWD/tests:/tests \ | |
-v $PWD/pyproject.toml:/pyproject.toml \ | |
-v $PWD/wheelhouse:/wheelhouse \ | |
"arm64v8/python:${{ matrix.python-version }}-bookworm" /bin/bash -s <<EOF | |
python3 -m venv venv | |
venv/bin/pip install --upgrade pip | |
venv/bin/pip install pytest | |
venv/bin/pip install $(ls wheelhouse/*.whl) | |
venv/bin/pytest -m "server or util or client or mainloop or partner" | |
EOF |