Skip to content

ci: open the nightly PRs as the riseproject-dev github app #41

ci: open the nightly PRs as the riseproject-dev github app

ci: open the nightly PRs as the riseproject-dev github app #41

# SPDX-FileCopyrightText: 2026 The RISE Project
# SPDX-License-Identifier: MIT
---
# Based on upstream's wheel builder:
# https://github.com/python-rapidjson/python-rapidjson/blob/master/.github/workflows/main.yml
name: Build python-rapidjson wheels (riscv64)
on:
workflow_dispatch:
inputs:
version:
description: 'Version glob to (re)build; empty builds every version of docs/packages/python-rapidjson.yaml not released yet'
required: false
default: ''
pull_request:
branches: [main]
paths:
- '.github/workflows/build-python-rapidjson.yml'
- 'docs/packages/python-rapidjson.yaml'
push:
branches: [main]
paths:
- '.github/workflows/build-python-rapidjson.yml'
- 'docs/packages/python-rapidjson.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: python-rapidjson
version: ${{ inputs.version }}
build_wheels:
needs: [setup]
if: needs.setup.outputs.versions != '[]'
name: Build python-rapidjson ${{ 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) }}
# No cp314t: upstream enables no free-threaded build and the extension
# declares no Py_mod_gil slot, so such a wheel would re-enable the GIL.
python: ["cp312", "cp313", "cp314"]
env:
PYTHON_RAPIDJSON_VERSION: ${{ matrix.version }}
steps:
- name: Checkout python-rapidjson v${{ env.PYTHON_RAPIDJSON_VERSION }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: python-rapidjson/python-rapidjson
ref: v${{ env.PYTHON_RAPIDJSON_VERSION }}
submodules: recursive
persist-credentials: false
# The extension compiles the bundled RapidJSON headers in, but the wheel ships
# only python-rapidjson's own licence; setuptools globs LICEN[CS]E* at the root.
- name: Stage the RapidJSON licence
run: cp rapidjson/license.txt LICENSE.rapidjson
- 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 }}
CIBW_TEST_REQUIRES: pytest pytest-benchmark pytz
CIBW_TEST_COMMAND: >-
python -c "import importlib.metadata as md; got = sorted(p.name for p in md.files('python-rapidjson') if '.dist-info/licenses/' in str(p) and p.name); assert got == ['LICENSE', 'LICENSE.rapidjson'], got"
&& pytest {project}/tests
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: python_rapidjson-${{ env.PYTHON_RAPIDJSON_VERSION }}-${{ matrix.python }}-manylinux_riscv64
path: ./wheelhouse/*.whl
if-no-files-found: error
publish:
name: Publish python-rapidjson ${{ 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: python_rapidjson-${{ matrix.version }}-*-manylinux_riscv64