Skip to content

ci: publish wheels as immutable GitHub releases #10

ci: publish wheels as immutable GitHub releases

ci: publish wheels as immutable GitHub releases #10

Workflow file for this run

# SPDX-FileCopyrightText: 2026 The RISE Project
# SPDX-License-Identifier: MIT
---
# Upstream ships no wheel workflow; the Python job of
# https://github.com/google/brotli/blob/v1.2.0/.github/workflows/build_test.yml
# is the reference for how the bindings are built and tested.
name: Build brotli wheels (riscv64)
on:
workflow_dispatch:
inputs:
version:
description: 'brotli version to build (git tag without leading v, e.g. 1.2.0)'
required: true
default: '1.2.0'
pull_request:
paths:
- '.github/workflows/build-brotli.yml'
concurrency:
group: ${{ github.workflow }}-${{ inputs.version || '1.2.0' }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
env:
BROTLI_VERSION: ${{ inputs.version || '1.2.0' }}
MANYLINUX_RISCV64_IMAGE: quay.io/pypa/manylinux_2_39_riscv64
jobs:
setup:
uses: $/.github/workflows/_setup.yml
build_wheels:
needs: [setup]
name: Build brotli ${{ inputs.version || '1.2.0' }} ${{ matrix.python }}-manylinux_riscv64
runs-on: ubuntu-24.04-riscv
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
python:
- "cp312"
- "cp313"
- "cp314"
- "cp314t"
steps:
- name: Checkout brotli v${{ env.BROTLI_VERSION }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: google/brotli
ref: v${{ env.BROTLI_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 }}
# tests/ resolves relative to the staged tree, so testdata and the bro.py
# CLI wrapper the tests spawn have to be staged alongside python/tests.
CIBW_TEST_SOURCES: python/tests python/bro.py tests/testdata
# Upstream's `setup.py test`, which modern setuptools no longer provides.
CIBW_TEST_COMMAND: python -m unittest discover -s python -p '*_test.py'
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: brotli-${{ env.BROTLI_VERSION }}-${{ matrix.python }}-manylinux_riscv64
path: wheelhouse/*.whl
if-no-files-found: error
publish:
name: Publish brotli ${{ inputs.version || '1.2.0' }}
needs: [setup, build_wheels]
permissions:
contents: write
pull-requests: write
uses: $/.github/workflows/_publish_wheel.yml
with:
artifact-pattern: brotli-${{ inputs.version || '1.2.0' }}-*-manylinux_riscv64