From 6f9560982b1cce3b68f5afd3866eff773afee5ea Mon Sep 17 00:00:00 2001 From: Phil Krylov Date: Sun, 12 Nov 2023 14:39:29 +0100 Subject: [PATCH] 2023-11-12 14:38 UTC+0100 Phil Krylov (phil a t krylov.eu) * .github/workflows/linux-ci.yml * .github/workflows/macos-ci.yml * .github/workflows/vm1-ci.yml * .github/workflows/windows-ci.yml * Made strict CI build not that strict by adding -Wno-error=deprecated-declarations. ! Fixed ccache configuration under msys2. --- .github/workflows/linux-ci.yml | 4 ++-- .github/workflows/macos-ci.yml | 4 ++-- .github/workflows/vm1-ci.yml | 2 +- .github/workflows/windows-ci.yml | 16 ++++++++++++++-- ChangeLog.txt | 9 +++++++++ 5 files changed, 28 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 44cff247fc..c56dc3e600 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -71,8 +71,8 @@ jobs: case ${{matrix.strictness}} in normal) ;; strict) case ${{matrix.compiler}} in - (gcc) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror -Wno-error=array-bounds" ;; - (*) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror" ;; + (gcc) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror -Wno-error=deprecated-declarations -Wno-error=array-bounds" ;; + (*) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror -Wno-error=deprecated-declarations" ;; esac ;; esac tee ./.bashrc <