Skip to content

docs: Update projects #64

docs: Update projects

docs: Update projects #64

# SPDX-FileCopyrightText: 2026 The RISE Project
# SPDX-License-Identifier: MIT
---
# Based on the `build_wheels` job of
# https://github.com/bluetooth-devices/habluetooth/blob/v6.26.7/.github/workflows/ci.yml
name: Build habluetooth wheels (riscv64)
on:
workflow_dispatch:
inputs:
version:
description: 'Version glob to (re)build; empty builds every version of docs/packages/habluetooth.yaml not released yet'
required: false
default: ''
pull_request:
branches: [main]
paths:
- '.github/workflows/build-habluetooth.yml'
- 'docs/packages/habluetooth.yaml'
push:
branches: [main]
paths:
- '.github/workflows/build-habluetooth.yml'
- 'docs/packages/habluetooth.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
env:
MANYLINUX_RISCV64_IMAGE: quay.io/pypa/manylinux_2_39_riscv64
jobs:
setup:
uses: $/.github/workflows/_setup.yml
with:
package: habluetooth
version: ${{ inputs.version }}
build_wheels:
needs: [setup]
if: needs.setup.outputs.versions != '[]'
name: Build habluetooth ${{ matrix.version }} ${{ matrix.python }}-manylinux_riscv64
runs-on: ubuntu-24.04-riscv
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
version: ${{ fromJSON(needs.setup.outputs.versions) }}
python: ["cp312", "cp313", "cp314", "cp314t"]
env:
HABLUETOOTH_VERSION: ${{ matrix.version }}
steps:
- name: Checkout habluetooth v${{ env.HABLUETOOTH_VERSION }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: bluetooth-devices/habluetooth
ref: v${{ env.HABLUETOOTH_VERSION }}
persist-credentials: false
- uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0
env:
CIBW_ARCHS: riscv64
CIBW_BUILD: ${{ matrix.python }}-manylinux_riscv64
CIBW_MANYLINUX_RISCV64_IMAGE: ${{ env.MANYLINUX_RISCV64_IMAGE }}
# Upstream passes REQUIRE_CYTHON as a plain job env var, which never
# reaches the Linux build container; build_ext.py otherwise falls back
# to a pure-Python wheel under a riscv64 tag.
# Cython 3.3.0 shipped after this release and rejects its augmenting
# .pxd signatures, here and in the bluetooth-data-tools sdist pip
# builds for the tests; build-system.requires only floors Cython.
CIBW_BEFORE_ALL: echo 'Cython<3.3.0' > /cython-constraint.txt
# only-binary keeps pip off PyPI's newest cryptography, which has no
# riscv64 wheel, so bluetooth-data-tools resolves ours from the registry.
CIBW_ENVIRONMENT: >-
REQUIRE_CYTHON=1
PIP_CONSTRAINT=/cython-constraint.txt
PIP_BUILD_CONSTRAINT=/cython-constraint.txt
PIP_EXTRA_INDEX_URL=https://pypi.riseproject.dev/simple/
PIP_ONLY_BINARY=cryptography
# Upstream's pytest ini is not staged (its addopts are coverage-only);
# log_level is the one key the caplog assertions need.
CIBW_TEST_SOURCES: tests
CIBW_TEST_REQUIRES: >-
pytest>=9.1.1,<10 pytest-asyncio>=1.4.0,<1.5.0
pytest-codspeed>=5.0.3,<6.0.0 freezegun>=1.5.5
CIBW_TEST_COMMAND: >-
python -c "from habluetooth import advertisement_tracker, auto_scheduler,
base_scanner, manager, models, scanner_bleak;
from habluetooth.channels import bluez;
m = [advertisement_tracker, auto_scheduler, base_scanner, manager, models,
scanner_bleak, bluez];
bad = [x.__name__ for x in m if not x.__file__.endswith('.so')];
assert not bad, bad" &&
python -m pytest tests -o log_level=NOTSET
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: habluetooth-${{ env.HABLUETOOTH_VERSION }}-${{ matrix.python }}-manylinux_riscv64
path: ./wheelhouse/*.whl
if-no-files-found: error
publish:
name: Publish habluetooth ${{ matrix.version }}
needs: [setup, build_wheels]
if: needs.setup.outputs.versions != '[]'
strategy:
fail-fast: false
matrix:
version: ${{ fromJSON(needs.setup.outputs.versions) }}
permissions:
contents: write
pull-requests: write
uses: $/.github/workflows/_publish-wheel.yml
secrets:
app-private-key: ${{ secrets.RISEPROJECT_APP_PRIVATE_KEY }}
with:
artifact-pattern: habluetooth-${{ matrix.version }}-*-manylinux_riscv64