From: Marc Fehling Date: Tue, 6 Jun 2023 03:09:47 +0000 (-0600) Subject: github-actions: Do not treat `tautological-constant-compare` as error. X-Git-Tag: v9.5.0-rc1~97^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73d64522ba8b891be4ec1d1582c90cea0d270886;p=dealii.git github-actions: Do not treat `tautological-constant-compare` as error. --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6825d37afc..61cd382a6b 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -332,7 +332,7 @@ jobs: cd build cmake -D CMAKE_BUILD_TYPE=Debug \ -D CMAKE_CXX_COMPILER=icpx \ - -D DEAL_II_CXX_FLAGS='-Werror -fno-finite-math-only' \ + -D DEAL_II_CXX_FLAGS='-Werror -Wno-error=tautological-constant-compare' \ -D DEAL_II_EARLY_DEPRECATIONS=ON \ -D DEAL_II_WITH_MPI=ON \ -D DEAL_II_WITH_LAPACK=ON \