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/CI.yaml
+46-55
Original file line number
Diff line number
Diff line change
@@ -10,76 +10,67 @@ jobs:
10
10
runs-on: ${{ matrix.os }}
11
11
12
12
strategy:
13
-
# 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
13
fail-fast: false
15
14
16
-
# Set up a matrix to run the following 3 configurations:
17
-
# 1. <Windows, Debug, latest MSVC compiler toolchain on the default runner image, default generator>
18
-
# 2. <Linux, Debug, latest GCC compiler toolchain on the default runner image, default generator>
19
-
# 3. <Linux, Debug, latest Clang compiler toolchain on the default runner image, default generator>
20
-
#
21
-
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
22
15
matrix:
23
-
os: [windows-latest] # skip ubuntu until 24.04 is available in GHA (required for newer GCC & CLang)
16
+
os: [windows-latest, ubuntu-24.04]
24
17
build_type: [Debug]
25
-
c_compiler: [cl] # skip gcc & clang until ubuntu 24.04 is available in GHA
26
-
# include:
27
-
# - os: windows-latest
28
-
# c_compiler: cl
29
-
# cpp_compiler: cl
30
-
# - os: ubuntu-latest
31
-
# c_compiler: gcc
32
-
# cpp_compiler: g++
33
-
# exclude:
34
-
# - os: windows-latest
35
-
# c_compiler: gcc
36
-
# - os: ubuntu-latest
37
-
# c_compiler: cl
18
+
c_compiler: [cl, gcc-14]
19
+
include:
20
+
- os: windows-latest
21
+
c_compiler: cl
22
+
cpp_compiler: cl
23
+
- os: ubuntu-24.04
24
+
c_compiler: gcc-14
25
+
cpp_compiler: g++-14
26
+
exclude:
27
+
- os: windows-latest
28
+
c_compiler: gcc-14
29
+
- os: ubuntu-24.04
30
+
c_compiler: cl
38
31
39
32
steps:
40
33
- uses: actions/checkout@v4
41
34
42
-
- name: Set reusable strings
43
-
# 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).
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
84
-
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
0 commit comments