From f57beb6ef957204b6fd563fe45e91a47d5351009 Mon Sep 17 00:00:00 2001 From: Sektor van Skijlen Date: Wed, 8 Feb 2023 16:24:19 +0100 Subject: [PATCH] [build] Fixed CodeQL configuration (#2644). --- .github/workflows/codeql.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 07133a379..4a337b6ca 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v3 - name: Configure - run: cmake . -DENABLE_HEAVY_LOGGING=1 -DENABLE_BONDING=1 + run: cmake -DENABLE_HEAVY_LOGGING=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-fpermissive -DENABLE_BONDING=1 . - name: Initialize CodeQL uses: github/codeql-action/init@v2 @@ -35,7 +35,6 @@ jobs: - name: Build run: | - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-fpermissive -DENABLE_BONDING=ON . make - name: Perform CodeQL Analysis