You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
15
+
fail-fast: false
16
+
17
+
matrix:
18
+
os: [ubuntu-latest, windows-latest]
19
+
build_type: [Release]
20
+
c_compiler: [gcc, clang, cl]
21
+
include:
22
+
- os: windows-latest
23
+
c_compiler: cl
24
+
cpp_compiler: cl
25
+
- os: windows-latest
26
+
c_compiler: gcc
27
+
cpp_compiler: g++
28
+
- os: ubuntu-latest
29
+
c_compiler: gcc
30
+
cpp_compiler: g++
31
+
- os: ubuntu-latest
32
+
c_compiler: clang
33
+
cpp_compiler: clang++
34
+
exclude:
35
+
- os: windows-latest
36
+
c_compiler: clang
37
+
- os: ubuntu-latest
38
+
c_compiler: cl
39
+
40
+
steps:
41
+
- uses: actions/checkout@v3
42
+
43
+
- name: Set reusable strings
44
+
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
0 commit comments