Skip to content

Commit

Permalink
install compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobiasd committed May 22, 2024
1 parent 60ca511 commit 5c947c1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ jobs:
runs-on: ubuntu-latest
name: "CodeQL"
env:
CC: gcc-13
CXX: g++-13
CC: gcc
CXX: g++
steps:
- name: Checkout
uses: actions/checkout@main
- name: Install dependencies
run: sudo script/ci_setup_dependencies.sh
run: |
sudo apt install -y gcc g++
sudo script/ci_setup_dependencies.sh
- name: CodeQL Initialization
uses: github/codeql-action/init@v3
with:
Expand All @@ -27,8 +29,8 @@ jobs:
run: |
echo $CC
echo $CXX
gcc-13 --version
g++-13 --version
gcc --version
g++ --version
cmake -S test -B build
cmake --build build -j 4
- name: CodeQL Analysis
Expand Down

0 comments on commit 5c947c1

Please sign in to comment.