From a72a8a54949348a07d9b0830867298594aa667ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Czerpak?= Date: Tue, 21 Jan 2025 09:08:47 +0100 Subject: [PATCH] 2025-01-21 09:08 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * .github/workflows/linux-ci.yml * disabled global -Wno-error=... C compiler parameters * set HB_BUILD_TEST="${{matrix.strictness}}" envvar * .github/workflows/macos-ci.yml * .github/workflows/vm2-ci.yml * disabled global -Wno-error=... C compiler parameters * set HB_BUILD_TEST="${{matrix.strictness}}" envvar * reenabled hbfimage contrib library * .github/workflows/windows-ci.yml * reenabled hbfimage contrib library --- .github/workflows/linux-ci.yml | 5 +++-- .github/workflows/macos-ci.yml | 11 ++++------- .github/workflows/vm2-ci.yml | 9 +++------ .github/workflows/windows-ci.yml | 6 +----- ChangeLog.txt | 16 +++++++++++++++- 5 files changed, 26 insertions(+), 21 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 541868e7b2..c3477086ce 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -72,12 +72,13 @@ jobs: case ${{matrix.strictness}} in normal) ;; strict) case ${{matrix.compiler}} in - (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" ;; + (gcc) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror" ;; + (*) HB_USER_CFLAGS="$HB_USER_CFLAGS -Werror" ;; esac ;; esac tee ./.bashrc <