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
+
# Set up a matrix to run the following 3 configurations:
18
+
matrix:
19
+
os: [ubuntu-latest, windows-latest]
20
+
build_type: [Release]
21
+
c_compiler: [gcc, clang, cl]
22
+
include:
23
+
- os: windows-latest
24
+
c_compiler: cl
25
+
cpp_compiler: cl
26
+
- os: ubuntu-latest
27
+
c_compiler: gcc
28
+
cpp_compiler: g++
29
+
- os: ubuntu-latest
30
+
c_compiler: clang
31
+
cpp_compiler: clang++
32
+
exclude:
33
+
- os: windows-latest
34
+
c_compiler: gcc
35
+
- os: windows-latest
36
+
c_compiler: clang
37
+
- os: ubuntu-latest
38
+
c_compiler: cl
39
+
40
+
steps:
41
+
- uses: actions/checkout@v4
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