From e498839acd791f0ac572dbfdb622a637ea783cf5 Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Tue, 25 Aug 2026 17:59:01 +0200 Subject: [PATCH] cbor2: add build-cbor2.yml for riscv64 wheels cbor2 6.x is a PyO3 extension built with setuptools-rust; upstream's publish.yml drives cibuildwheel with a rustup before-all and runs the full pytest suite from the `test` dependency group. Mirrored here for riscv64, per-interpreter (upstream publishes cpXY-cpXY wheels, no abi3) and manylinux-only (rustup ships no riscv64 musl toolchain). setuptools_scm cannot see the tag in the checkout, so the version is pinned with SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CBOR2. Co-Authored-By: Claude Opus 5 --- .github/workflows/build-cbor2.yml | 87 +++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 .github/workflows/build-cbor2.yml diff --git a/.github/workflows/build-cbor2.yml b/.github/workflows/build-cbor2.yml new file mode 100644 index 00000000..e8118a02 --- /dev/null +++ b/.github/workflows/build-cbor2.yml @@ -0,0 +1,87 @@ +# SPDX-FileCopyrightText: 2026 The RISE Project +# SPDX-License-Identifier: MIT +--- +# This workflow is based on: https://github.com/agronholm/cbor2/blob/6.1.4/.github/workflows/publish.yml +name: Build cbor2 wheels (riscv64) + +on: + workflow_dispatch: + inputs: + version: + description: 'cbor2 version to build (git tag, e.g. 6.1.4)' + required: true + default: '6.1.4' + pull_request: + paths: + - '.github/workflows/build-cbor2.yml' + +concurrency: + group: ${{ github.workflow }}-${{ inputs.version || '6.1.4' }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +permissions: + contents: read # to fetch code (actions/checkout) + +env: + # `inputs.version` is empty on pull_request events; default to 6.1.4 there. + CBOR2_VERSION: ${{ inputs.version || '6.1.4' }} + MANYLINUX_RISCV64_IMAGE: quay.io/pypa/manylinux_2_39_riscv64 + +jobs: + build_wheels: + name: Build cbor2 ${{ inputs.version || '6.1.4' }} ${{ matrix.python }}-manylinux_riscv64 + runs-on: ubuntu-24.04-riscv + timeout-minutes: 120 + strategy: + fail-fast: false + matrix: + # pyo3 is built per-interpreter here (no abi3 feature), matching the + # cpXY-cpXY wheels upstream publishes. + python: ["cp312", "cp313", "cp314", "cp314t"] + + steps: + - name: Checkout cbor2 ${{ env.CBOR2_VERSION }} + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + with: + repository: agronholm/cbor2 + ref: ${{ env.CBOR2_VERSION }} + persist-credentials: false + + - name: Build wheels + uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0 + with: + output-dir: wheelhouse/ + only: ${{ matrix.python }}-manylinux_riscv64 + env: + CIBW_MANYLINUX_RISCV64_IMAGE: ${{ env.MANYLINUX_RISCV64_IMAGE }} + CIBW_BEFORE_ALL_LINUX: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + # setuptools_scm can't derive the version from this tag-less checkout. + CIBW_ENVIRONMENT: >- + PATH=$HOME/.cargo/bin:$PATH + SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CBOR2=${{ env.CBOR2_VERSION }} + CIBW_TEST_GROUPS: test + CIBW_TEST_COMMAND: pytest {project}/tests + + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: cbor2-${{ env.CBOR2_VERSION }}-${{ matrix.python }}-manylinux_riscv64 + path: wheelhouse/*.whl + if-no-files-found: error + + publish: + name: Publish cbor2 ${{ inputs.version || '6.1.4' }} to GitLab + needs: [build_wheels] + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + steps: + - name: Publish wheels and open docs PR + uses: riseproject-dev/python-wheels/actions/publish-wheels@main + with: + artifact-pattern: cbor2-${{ env.CBOR2_VERSION }}-*-manylinux_riscv64 + gitlab-username: ${{ vars.GITLAB_DEPLOY_USER }} + gitlab-token: ${{ secrets.GITLAB_DEPLOY_TOKEN }} + gitlab-project-id: ${{ vars.GITLAB_PROJECT_ID }} + gh-token: ${{ secrets.GITHUB_TOKEN }}