-
Notifications
You must be signed in to change notification settings - Fork 55
41 lines (38 loc) · 1.22 KB
/
ci-manual.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 }}