From f4ea383593e113da5c258fc484d0a6cc37c2b4d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Czerpak?= Date: Tue, 21 Jan 2025 06:45:38 +0100 Subject: [PATCH] 2025-01-21 06:45 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * .github/workflows/windows-ci.yml * disabled global -Wno-error=... C compiler parameters * set HB_BUILD_TEST="${{matrix.strictness}}" envvar * contrib/3rd/sqlite3/sqlite3.hbp * set -Wno-error=stringop-overread C compiler parameter for GCC builds when HB_BUILD_TEST='strict' * contrib/hbzebra/hbzebra.hbp * set -Wno-error=array-bounds C compiler parameter for GCC builds when HB_BUILD_TEST='strict' --- .github/workflows/windows-ci.yml | 5 +++-- ChangeLog.txt | 13 +++++++++++++ contrib/3rd/sqlite3/sqlite3.hbp | 3 +++ contrib/hbzebra/hbzebra.hbp | 3 +++ 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index e015e7ff28..005b867476 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -113,15 +113,16 @@ jobs: case ${{matrix.strictness}} in normal) ;; strict) case ${{matrix.compiler}} in - (mingw64) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror -Wno-error=deprecated-declarations -Wno-error=array-bounds" ;; + (mingw64) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror" ;; (bcc) HB_USER_CFLAGS="$HB_USER_CFLAGS -w!" ;; - (*) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror -Wno-error=deprecated-declarations" ;; + (*) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror" ;; esac ;; esac tee -a ./.bashrc <