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 0bb0d9b commit 5f4f69cCopy full SHA for 5f4f69c
.github/workflows/release.yml
@@ -14,9 +14,13 @@ jobs:
14
- os: ubuntu-latest
15
vcpkgCommitId: '834977918592e4f5d5ec5fe48ba338c608faf9f9'
16
cmakeGen: Ninja
17
+ cc: gcc
18
+ cxx: g++
19
- os: macos-latest
20
- cmakeGen: '"Unix Makefiles"'
21
+ cmakeGen: Unix Makefiles
22
+ cc: clang
23
+ cxx: clang++
24
25
steps:
26
- uses: actions/checkout@v3
@@ -50,7 +54,7 @@ jobs:
50
54
VCPKG_ROOT: ${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_ROOT_OUT }}
51
55
BUILD_TYPE: Release
52
56
BIN_DIR: rel
53
- run: cmake -G ${{matrix.cmakeGen}} --preset=base
57
+ run: cmake -DCMAKE_CXX_COMPILER=${{matrix.cxx}} -G ${{matrix.cmakeGen}} --preset=base
58
shell: bash
59
60
- name: Run build
0 commit comments