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 <