Skip to content

Commit 485fbb6

Browse files
author
Sergey Gomenyuk
committed
compiler
1 parent 0bb0d9b commit 485fbb6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ jobs:
1414
- os: ubuntu-latest
1515
vcpkgCommitId: '834977918592e4f5d5ec5fe48ba338c608faf9f9'
1616
cmakeGen: Ninja
17+
cc: gcc
18+
cxx: g++
1719
- os: macos-latest
1820
vcpkgCommitId: '834977918592e4f5d5ec5fe48ba338c608faf9f9'
19-
cmakeGen: '"Unix Makefiles"'
21+
cmakeGen: Ninja
22+
cc: clang
23+
cxx: clang++
2024

2125
steps:
2226
- uses: actions/checkout@v3
@@ -50,7 +54,7 @@ jobs:
5054
VCPKG_ROOT: ${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_ROOT_OUT }}
5155
BUILD_TYPE: Release
5256
BIN_DIR: rel
53-
run: cmake -G ${{matrix.cmakeGen}} --preset=base
57+
run: cmake -DCMAKE_CXX_COMPILER=${{matrix.cxx}} -G ${{matrix.cmakeGen}} --preset=base
5458
shell: bash
5559

5660
- name: Run build

0 commit comments

Comments
 (0)