From 2f6786a6fce9de6eb9bd06a62e4c0ec3e8cb64e7 Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Sat, 26 Sep 2026 02:38:28 +0000 Subject: [PATCH] color-operations: Add version 0.4.0 --- .github/workflows/build-color-operations.yml | 113 +++++++++++++++++++ docs/packages/color-operations.yaml | 5 + 2 files changed, 118 insertions(+) create mode 100644 .github/workflows/build-color-operations.yml create mode 100644 docs/packages/color-operations.yaml diff --git a/.github/workflows/build-color-operations.yml b/.github/workflows/build-color-operations.yml new file mode 100644 index 0000000000..f96122e2be --- /dev/null +++ b/.github/workflows/build-color-operations.yml @@ -0,0 +1,113 @@ +# SPDX-FileCopyrightText: 2026 The RISE Project +# SPDX-License-Identifier: MIT +--- +# This workflow is based on the `wheels` job of +# https://github.com/vincentsarago/color-operations/blob/0.4.0/.github/workflows/ci.yml +name: Build color-operations wheels (riscv64) + +on: + workflow_dispatch: + inputs: + version: + description: 'Version glob to (re)build; empty builds every version of docs/packages/color-operations.yaml not released yet' + required: false + default: '' + pull_request: + branches: [main] + paths: + - '.github/workflows/build-color-operations.yml' + - 'docs/packages/color-operations.yaml' + push: + branches: [main] + paths: + - '.github/workflows/build-color-operations.yml' + - 'docs/packages/color-operations.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: color-operations + version: ${{ inputs.version }} + + build_wheels: + needs: [setup] + if: needs.setup.outputs.versions != '[]' + name: Build color-operations ${{ matrix.version }} ${{ matrix.python }}-manylinux_riscv64 + runs-on: ubuntu-24.04-riscv + timeout-minutes: 60 + strategy: + fail-fast: false + matrix: + version: ${{ fromJSON(needs.setup.outputs.versions) }} + python: ["cp312", "cp313", "cp314", "cp314t"] + + env: + COLOR_OPERATIONS_VERSION: ${{ matrix.version }} + + steps: + - name: Checkout color-operations ${{ env.COLOR_OPERATIONS_VERSION }} + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + repository: vincentsarago/color-operations + ref: ${{ env.COLOR_OPERATIONS_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_ENVIRONMENT: >- + PIP_EXTRA_INDEX_URL=https://pypi.riseproject.dev/simple/ + PIP_ONLY_BINARY=numpy + # Upstream comments these out but runs the same suite in its `tests` job. + CIBW_TEST_REQUIRES: pytest colormath==2.0.2 + CIBW_TEST_COMMAND: pytest {project}/tests + + - name: Check wheel contents + run: | + python3 - wheelhouse/*.whl <<'EOF' + import sys, zipfile + names = zipfile.ZipFile(sys.argv[1]).namelist() + sos = [n for n in names if n.endswith(".so")] + assert len(sos) == 1 and sos[0].startswith("color_operations/colorspace."), sos + licences = {n.rsplit("/", 1)[-1] for n in names if ".dist-info/licenses/" in n and not n.endswith("/")} + assert licences == {"LICENSE"}, licences + EOF + + - name: Store wheels + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: color-operations-${{ env.COLOR_OPERATIONS_VERSION }}-${{ matrix.python }}-manylinux_riscv64 + path: ./wheelhouse/*.whl + if-no-files-found: error + + publish: + name: Publish color-operations ${{ 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: color-operations-${{ matrix.version }}-*-manylinux_riscv64 diff --git a/docs/packages/color-operations.yaml b/docs/packages/color-operations.yaml new file mode 100644 index 0000000000..5d875cff98 --- /dev/null +++ b/docs/packages/color-operations.yaml @@ -0,0 +1,5 @@ +package-name: color-operations +source-code: https://github.com/vincentsarago/color-operations +license: MIT +versions: +- version: 0.4.0