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.
14
+
fail-fast: false
15
+
16
+
matrix:
17
+
os: [ubuntu-latest, windows-latest, macos-latest]
18
+
build_type: [Release, Debug]
19
+
c_compiler: [gcc, clang, cl]
20
+
include:
21
+
- os: windows-latest
22
+
c_compiler: cl
23
+
cpp_compiler: cl
24
+
- os: ubuntu-latest
25
+
c_compiler: gcc
26
+
cpp_compiler: g++
27
+
- os: ubuntu-latest
28
+
c_compiler: clang
29
+
cpp_compiler: clang++
30
+
- os: macos-latest
31
+
c_compiler: gcc
32
+
cpp_compiler: g++
33
+
- os: macos-latest
34
+
c_compiler: clang
35
+
cpp_compiler: clang++
36
+
exclude:
37
+
- os: windows-latest
38
+
c_compiler: gcc
39
+
- os: windows-latest
40
+
c_compiler: clang
41
+
- os: ubuntu-latest
42
+
c_compiler: cl
43
+
- os: macos-latest
44
+
c_compiler: cl
45
+
46
+
steps:
47
+
- uses: actions/checkout@v4
48
+
with:
49
+
submodules: 'recursive'
50
+
51
+
- name: Set reusable strings
52
+
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
0 commit comments