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
description: 'Build type (e.g., "Debug", "Release", "RelWithDebInfo", "MinSizeRel")'
10
-
default: '"Debug"'
7
+
description: 'Build type (e.g., "Debug", "Release")'
8
+
default: '"Release"'
11
9
required: true
12
10
type: string
13
11
upload_artifacts:
@@ -21,42 +19,34 @@ jobs:
21
19
runs-on: ${{ matrix.os }}
22
20
23
21
strategy:
24
-
# 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.
25
22
fail-fast: false
26
-
27
-
# Set up a matrix to run the following 3 configurations:
28
-
# 1. <Windows, Release, latest MSVC compiler toolchain on the default runner image, default generator>
29
-
# 2. <Linux, Release, latest GCC compiler toolchain on the default runner image, default generator>
30
-
# 3. <Linux, Release, latest Clang compiler toolchain on the default runner image, default generator>
31
-
#
32
-
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
# 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).
115
-
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
0 commit comments