File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 12
12
required : false
13
13
extra_cmake_args :
14
14
required : false
15
+ os_list :
16
+ required : false
17
+ default : ' ["ubuntu-latest", "windows-2019", "macOS-11"]'
15
18
workflow_call :
16
19
inputs :
17
20
build_target :
26
29
required : false
27
30
type : string
28
31
32
+ os_list :
33
+ required : false
34
+ type : string
35
+ # Use windows-2019 due to:
36
+ # https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
37
+ # We're using a specific version of macOS due to:
38
+ # https://github.com/actions/virtual-environments/issues/5900
39
+ default : ' ["ubuntu-latest", "windows-2019", "macOS-11"]'
40
+
29
41
concurrency :
30
42
# Skip intermediate builds: always.
31
43
# Cancel intermediate builds: only if it is a pull request build.
41
53
strategy :
42
54
fail-fast : false
43
55
matrix :
44
- os :
45
- - ubuntu-latest
46
- # Use windows-2019 due to:
47
- # https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
48
- - windows-2019
49
- # We're using a specific version of macOS due to:
50
- # https://github.com/actions/virtual-environments/issues/5900
51
- - macOS-11
56
+ os : ${{ fromJSON(inputs.os_list) }}
52
57
steps :
53
58
- name : Setup Windows
54
59
if : startsWith(matrix.os, 'windows')
Original file line number Diff line number Diff line change 26
26
build_target : check-llvm-codegen-spirv
27
27
projects :
28
28
extra_cmake_args : ' -DLLVM_TARGETS_TO_BUILD="" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="SPIRV"'
29
+ os_list : ' ["ubuntu-latest"]'
You can’t perform that action at this time.
0 commit comments