From 0f9040ad82a403b6d936669abba5cadf568775e7 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Thu, 8 Feb 2024 15:53:51 +0100 Subject: [PATCH] ci: continue on error codeQL analysis --- .github/workflows/static-analysis.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml index ec5171ff..3e5cae63 100644 --- a/.github/workflows/static-analysis.yaml +++ b/.github/workflows/static-analysis.yaml @@ -45,17 +45,25 @@ jobs: ns-clone -d -s ns-make-libs install + # TODO the feature doesn't work as expected, maybe due to a prive repo but + # not sure. + # see https://github.com/github/codeql-action/issues/572 + # I (Pierre) continue-on-error for now. + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} + continue-on-error: true - name: Build Library run: | export TARGET_WORKSPACE="$(pwd)/projects" source projects/env.sh make -j"$(nproc)" + continue-on-error: true - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 + continue-on-error: true