We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 285cff6 commit 9454276Copy full SHA for 9454276
.github/workflows/cmake.yml
@@ -6,6 +6,10 @@ env:
6
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
7
BUILD_TYPE: Release
8
9
+strategy:
10
+ matrix:
11
+ compiler: [g++-10, clang]
12
+
13
jobs:
14
build:
15
# The CMake configure and build commands are platform agnostic and should work equally
@@ -27,6 +31,8 @@ jobs:
27
31
# access regardless of the host operating system
28
32
shell: bash
29
33
working-directory: ${{runner.workspace}}/build
34
+ env:
35
+ CC: ${{ matrix.compiler }}
30
36
# Note the current convention is to use the -S and -B options here to specify source
37
# and build directories, but this is only available with CMake 3.13 and higher.
38
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
0 commit comments