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 <