Skip to content

Commit

Permalink
Revert to GCC13 for CodeQL scanning
Browse files Browse the repository at this point in the history
For some reason, our CodeQL action with GCC14 hangs at the point it's trying to compile `test_mask.cpp`. I have no idea why, given the same compiler works fine with our Linux CI, but as a workaround we'll try going back to GCC 14 and see whether that works.
  • Loading branch information
tcbrindle committed Jun 3, 2024
1 parent 5e0e8e4 commit b4cd323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
include:
- install: |
brew install gcc@14 ninja binutils
brew install gcc@13 ninja binutils
brew link --force binutils
steps:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
${{matrix.install}}
cmake -E make_directory ${{runner.workspace}}/build
cd ${{runner.workspace}}/build
cmake ${GITHUB_WORKSPACE} -GNinja -DCMAKE_CXX_COMPILER=g++-14
cmake ${GITHUB_WORKSPACE} -GNinja -DCMAKE_CXX_COMPILER=g++-13
cmake --build .
Expand Down

0 comments on commit b4cd323

Please sign in to comment.