ci(documentation): add runner input for GPU-queue doc builds#70
Merged
ChrisRackauckas merged 1 commit intoJun 7, 2026
Merged
Conversation
Mirrors tests.yml: a JSON-encoded `runner` input (array of labels, e.g. ["self-hosted","Linux","X64","gpu"]) that overrides self-hosted/os when non-empty, so docs that require a GPU can build via the central documentation.yml@v1 caller (runs-on uses fromJson(runner)) instead of a bespoke GPU.yml. Backward-compatible: default "" preserves self-hosted/os behavior for all existing callers. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
runnerinput todocumentation.yml(mirrorstests.yml): a JSON-encoded runs-on value (e.g.["self-hosted","Linux","X64","gpu"]) that overridesself-hosted/oswhen non-empty. This lets repos whose docs require a GPU build via the centraldocumentation.yml@v1caller on a GPU queue, instead of a bespoke GPU.yml/ci.yml.runs-onbecomes${{ inputs.runner != '' && fromJson(inputs.runner) || (inputs.self-hosted && 'self-hosted' || inputs.os) }}. Backward-compatible (default""preserves current behavior).After merge +
v1retag, the GPU-docs repos (HighDimPDE, ModelingToolkit, Optimization, ReservoirComputing, SciMLSensitivity) can switch their bespoke doc builds to this caller withrunner: ....🤖 Generated with Claude Code