ci manual #1
This file contains 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
name: ci manual | |
on: | |
workflow_dispatch: | |
inputs: | |
fail-fast: | |
description: 'Fail the build after single job fails' | |
required: true | |
default: false | |
type: boolean | |
os: | |
description: 'JSON array of OS to be checked' | |
required: true | |
default: "[\"ubuntu-20.04\", \"ubuntu-22.04\", \"ubuntu-24.04\", \"macos-11\", \"macos-12\", \"macos-13\", \"macos-14\"]" | |
type: string | |
python-version: | |
description: 'JSON array of Python versions to be checked' | |
required: true | |
default: "[\"3.7\", \"3.8\", \"3.9\", \"3.10\", \"3.11\"]" | |
type: string | |
cmake-version: | |
description: 'JSON array of CMake versions to be checked' | |
required: true | |
default: "[\"3.19.x\"]" | |
type: string | |
jobs: | |
ci-manual: | |
strategy: | |
fail-fast: ${{ inputs.fail-fast }} | |
matrix: | |
os: ${{ fromJson(inputs.os) }} | |
python-version: ${{ fromJson(inputs.python-version) }} | |
cmake-version: ${{ fromJson(inputs.cmake-version) }} | |
max-parallel: 5 | |
uses: ./.github/workflows/common.yml | |
with: | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
cmake-version: ${{ matrix.cmake-version }} |