We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee5f847 commit b79ba91Copy full SHA for b79ba91
.github/workflows/cmake-multi-platform.yml
@@ -18,7 +18,7 @@ jobs:
18
cpp_compiler: cl
19
separator: '\\'
20
- os: ubuntu-latest
21
- cpp_compiler: g++
+ cpp_compiler: clang++
22
separator: "/"
23
24
steps:
@@ -33,7 +33,7 @@ jobs:
33
if: runner.os == 'Linux'
34
run: |
35
sudo apt-get update
36
- sudo apt-get install -y libegl1-mesa-dev libgl1-mesa-dev ninja-build
+ sudo apt-get install -y libegl1-mesa-dev libgl1-mesa-dev ninja-build clang
37
38
- name: Setup Developer Command Prompt (Windows)
39
if: runner.os == 'Windows'
@@ -88,6 +88,12 @@ jobs:
88
echo "preset=conan-release" >> "$GITHUB_OUTPUT"
89
fi
90
91
+ - name: Set Clang Environment (Ubuntu)
92
+ if: runner.os == 'Linux'
93
+ run: |
94
+ echo "CC=clang" >> $GITHUB_ENV
95
+ echo "CXX=clang++" >> $GITHUB_ENV
96
+
97
- name: Configure CMake
98
shell: bash
99
0 commit comments