Skip to content

Commit 3dae61e

Browse files
committed
Update codeql build steps
We no longer use gcc 11 and just use the default so can drop adding the toolchain repo and specifying the compiler version.
1 parent b8d5035 commit 3dae61e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ jobs:
4242

4343
- name: Configure and Build
4444
run: |
45-
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
46-
sudo apt update && sudo apt install -y ninja-build ccache gcc-11 g++-11
47-
cmake -GNinja -H. -Bbuild -DCMAKE_CXX_COMPILER=/usr/bin/g++-11 -DCMAKE_BUILD_TYPE=Debug
45+
sudo apt update && sudo apt install -y ninja-build ccache gcc g++
46+
cmake -GNinja -H. -Bbuild -DCMAKE_CXX_COMPILER=/usr/bin/g++ -DCMAKE_BUILD_TYPE=Debug
4847
cmake --build ./build
4948
5049
- name: Perform CodeQL Analysis

0 commit comments

Comments
 (0)