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
Copy file name to clipboardExpand all lines: .github/workflows/cmake-multi-platform.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ jobs:
14
14
15
15
strategy:
16
16
# 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.
17
-
fail-fast: false
17
+
fail-fast: true
18
18
19
19
# Set up a matrix to run the following 3 configurations:
20
20
# 1. <Windows, Release, latest MSVC compiler toolchain on the default runner image, default generator>
# 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]
18
+
build_type: [Release]
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
+
exclude:
31
+
- os: windows-latest
32
+
c_compiler: gcc
33
+
- os: windows-latest
34
+
c_compiler: clang
35
+
- os: ubuntu-latest
36
+
c_compiler: cl
37
+
38
+
steps:
39
+
- uses: actions/checkout@v4
40
+
41
+
- name: Set reusable strings
42
+
# 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