From ac0f93ffda0a2a9b60ae28e9cda5cbaff42d4c81 Mon Sep 17 00:00:00 2001 From: Eldred Habert Date: Tue, 14 Apr 2026 22:04:20 +0200 Subject: [PATCH] Delete GCC static analyzer workflow (#1950) As for GCC 15, it is stated not to be suitable for C++ code, and we have gotten annoyingly many false positives out of it, so let's just disable it (as per https://github.com/gbdev/rgbds/pull/1950#issuecomment-4243959126). --- .github/workflows/analysis.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/analysis.yml diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml deleted file mode 100644 index 71e16574..00000000 --- a/.github/workflows/analysis.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Static analysis -on: - - push - - pull_request - -env: - # Force colored output (see https://bixense.com/clicolors/ and https://force-color.org/) - TERM: xterm-256color - CLICOLOR: 1 - CLICOLOR_FORCE: 1 - -jobs: - analysis: - runs-on: ubuntu-latest - steps: - - name: Checkout repo - uses: actions/checkout@v6 - - name: Install deps - run: | - ./.github/scripts/install_deps.sh ubuntu-latest - - name: Static analysis - run: | # Silence warnings with too many false positives (https://stackoverflow.com/a/73913076) - make -kj CXX=g++-14 CXXFLAGS="-fanalyzer -fanalyzer-verbosity=0 -Wno-analyzer-use-of-uninitialized-value -DNDEBUG" Q=