From: Hans Kristian Rosbach Date: Mon, 12 Jan 2026 19:52:47 +0000 (+0100) Subject: Update static analyzer from targeting GCC v10 to v14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20c424fe78c87d25629f7fb7c56afd93c4f0d28e;p=thirdparty%2Fzlib-ng.git Update static analyzer from targeting GCC v10 to v14 --- diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index b302b27a9..4928b525d 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -5,7 +5,7 @@ concurrency: cancel-in-progress: true jobs: static-analysis: - name: GCC + name: GCC-14 runs-on: ubuntu-latest steps: - name: Checkout repository @@ -21,7 +21,7 @@ jobs: sudo sed -i 's#http://azure.archive.ubuntu.com/ubuntu/#mirror+file:/etc/apt/mirrors.txt#' /etc/apt/sources.list - name: Install packages (Ubuntu) - run: sudo apt-get install -y gcc-10 + run: sudo apt-get install -y gcc-14 - name: Generate project files run: | @@ -32,7 +32,7 @@ jobs: -DWITH_CODE_COVERAGE=OFF \ -DWITH_MAINTAINER_WARNINGS=OFF env: - CC: gcc-10 + CC: gcc-14 CFLAGS: -fanalyzer -Werror