From 85cee757f5feecf815b62ef5580d9586984f4e0c Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Mon, 21 Sep 2026 19:57:29 +0000 Subject: [PATCH] eclipse-zenoh: Add version 1.10.0 Build the riscv64 wheel for the Zenoh Python API from the upstream zenoh-python checkout at tag 1.10.0, mirroring the build-linux job of upstream's release.yml narrowed to manylinux_riscv64. pyo3 0.25.1 carries abi3-py39 unconditionally, so the build produces a single cp39-abi3 wheel on the oldest interpreter its tag claims and re-tests it on cp312, cp313 and cp314. --- .github/workflows/build-eclipse-zenoh.yml | 125 ++++++++++++++++++++++ docs/packages/eclipse-zenoh.yaml | 5 + 2 files changed, 130 insertions(+) create mode 100644 .github/workflows/build-eclipse-zenoh.yml create mode 100644 docs/packages/eclipse-zenoh.yaml diff --git a/.github/workflows/build-eclipse-zenoh.yml b/.github/workflows/build-eclipse-zenoh.yml new file mode 100644 index 00000000000..525e29b9dcc --- /dev/null +++ b/.github/workflows/build-eclipse-zenoh.yml @@ -0,0 +1,125 @@ +# SPDX-FileCopyrightText: 2026 The RISE Project +# SPDX-License-Identifier: MIT +--- +# This workflow is based on the `build-linux` job of +# https://github.com/eclipse-zenoh/zenoh-python/blob/1.10.0/.github/workflows/release.yml +name: Build eclipse-zenoh wheels (riscv64) + +on: + workflow_dispatch: + inputs: + version: + description: 'Version glob to (re)build; empty builds every version of docs/packages/eclipse-zenoh.yaml not released yet' + required: false + default: '' + pull_request: + branches: [main] + paths: + - '.github/workflows/build-eclipse-zenoh.yml' + - 'docs/packages/eclipse-zenoh.yaml' + push: + branches: [main] + paths: + - '.github/workflows/build-eclipse-zenoh.yml' + - 'docs/packages/eclipse-zenoh.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: eclipse-zenoh + version: ${{ inputs.version }} + + build_wheels: + needs: [setup] + if: needs.setup.outputs.versions != '[]' + strategy: + fail-fast: false + matrix: + version: ${{ fromJSON(needs.setup.outputs.versions) }} + name: Build eclipse-zenoh ${{ matrix.version }} cp39-abi3-manylinux_riscv64 + runs-on: ubuntu-24.04-riscv + timeout-minutes: 720 + + env: + ECLIPSE_ZENOH_VERSION: ${{ matrix.version }} + + steps: + - name: Checkout zenoh-python ${{ env.ECLIPSE_ZENOH_VERSION }} + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + repository: eclipse-zenoh/zenoh-python + ref: ${{ env.ECLIPSE_ZENOH_VERSION }} + persist-credentials: false + + - name: Build wheels + uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0 + with: + output-dir: wheelhouse/ + env: + # pyo3's abi3-py39 feature makes this one wheel; it is built on cp39, + # the oldest interpreter its tag claims, and re-tested on the newer + # ones via find_compatible_wheel. cp314t is dropped: pyo3 0.25.1 + # predates CPython 3.14. musllinux is dropped: rustup.rs ships no + # riscv64 musl toolchain. + CIBW_BUILD: >- + cp39-manylinux_riscv64 cp312-manylinux_riscv64 + cp313-manylinux_riscv64 cp314-manylinux_riscv64 + CIBW_MANYLINUX_RISCV64_IMAGE: ${{ env.MANYLINUX_RISCV64_IMAGE }} + # zenoh-python ships no [tool.cibuildwheel], so the Rust toolchain its + # maturin backend needs is installed in-container here; the version is + # the one rust-toolchain.toml pins. + CIBW_BEFORE_ALL_LINUX: >- + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + CIBW_ENVIRONMENT_LINUX: >- + PATH="$PATH:$HOME/.cargo/bin" + PIP_EXTRA_INDEX_URL=https://pypi.riseproject.dev/simple/ + CIBW_TEST_REQUIRES: pytest fixtures + # The stubs are what tests/stubs_check.py reads; staged without the + # package's .py files so the installed wheel still wins the import. + CIBW_TEST_SOURCES: >- + tests zenoh/__init__.pyi zenoh/ext.pyi zenoh/handlers.pyi + zenoh/shm.pyi + # tests/examples_check.py is left out: it drives ~30 concurrent example + # processes over multicast scouting, which cross-talks between jobs on + # a shared runner. + CIBW_TEST_COMMAND: >- + python tests/stubs_check.py && + python -m pytest -v + tests/test_serializer.py + tests/test_cancellation_token.py + tests/test_session.py + tests/test_timestamp_stack.py + + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: eclipse-zenoh-${{ env.ECLIPSE_ZENOH_VERSION }}-cp39-abi3-manylinux_riscv64 + path: wheelhouse/*.whl + if-no-files-found: error + + publish: + name: Publish eclipse-zenoh ${{ 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: eclipse-zenoh-${{ matrix.version }}-*-manylinux_riscv64 diff --git a/docs/packages/eclipse-zenoh.yaml b/docs/packages/eclipse-zenoh.yaml new file mode 100644 index 00000000000..276bda3e462 --- /dev/null +++ b/docs/packages/eclipse-zenoh.yaml @@ -0,0 +1,5 @@ +package-name: eclipse-zenoh +source-code: https://github.com/eclipse-zenoh/zenoh-python +license: EPL-2.0 OR Apache-2.0 +versions: +- version: 1.10.0