docs: Update projects #43
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2026 The RISE Project | |
| # SPDX-License-Identifier: MIT | |
| # This workflow is based on: https://github.com/njzjz/nodejs-wheel/blob/master/.github/workflows/build_wheel.yml | |
| name: Build nodejs-wheel-binaries wheels (riscv64) | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version glob to (re)build; empty builds every version of docs/packages/nodejs-wheel-binaries.yaml not released yet' | |
| required: false | |
| default: '' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '.github/workflows/build-nodejs-wheel-binaries.yml' | |
| - 'docs/packages/nodejs-wheel-binaries.yaml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.github/workflows/build-nodejs-wheel-binaries.yml' | |
| - 'docs/packages/nodejs-wheel-binaries.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: nodejs-wheel-binaries | |
| 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 nodejs-wheel-binaries ${{ matrix.version }} manylinux_riscv64 | |
| runs-on: ubuntu-24.04-riscv | |
| timeout-minutes: 2880 # 48h — full Node.js (V8 + ICU) compile from source; runner speed | |
| # varies enough that a prior run needed ~23h16m and the next one | |
| # was still compiling V8 objects when killed at the 24h mark | |
| env: | |
| NODEJS_WHEEL_BINARIES_VERSION: ${{ matrix.version }} | |
| steps: | |
| - name: Checkout nodejs-wheel v${{ env.NODEJS_WHEEL_BINARIES_VERSION }} | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| repository: njzjz/nodejs-wheel | |
| ref: v${{ env.NODEJS_WHEEL_BINARIES_VERSION }} | |
| persist-credentials: false | |
| - name: Checkout python-wheels | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| path: python-wheels | |
| persist-credentials: false | |
| - name: Pass --openssl-no-asm to Node's configure on riscv64 | |
| run: git apply python-wheels/patches/nodejs-wheel-binaries/${{ env.NODEJS_WHEEL_BINARIES_VERSION }}/00*.patch | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0 | |
| with: | |
| output-dir: wheelhouse/ | |
| only: cp312-manylinux_riscv64 | |
| env: | |
| CIBW_MANYLINUX_RISCV64_IMAGE: ${{ env.MANYLINUX_RISCV64_IMAGE }} | |
| # The riscv64 OpenSSL patch leaves the checkout dirty relative to | |
| # the tag, so setuptools_scm (via scikit-build-core) would | |
| # otherwise compute a dev version (observed: published wheels came | |
| # out as 24.19.1.dev0+g<hash>.d<date> instead of the clean 24.19.0). | |
| CIBW_ENVIRONMENT: SETUPTOOLS_SCM_PRETEND_VERSION=${{ env.NODEJS_WHEEL_BINARIES_VERSION }} | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: nodejs-wheel-binaries-${{ env.NODEJS_WHEEL_BINARIES_VERSION }}-py2.py3-none-manylinux_riscv64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| publish: | |
| name: Publish nodejs-wheel-binaries ${{ 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: nodejs-wheel-binaries-${{ matrix.version }}-*-manylinux_riscv64 |