diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d44eda7b..c52e9547 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -12,19 +12,19 @@ jobs: - name: GCC-5 (Ubuntu 16.04) os: ubuntu-16.04 flags: -c gcc - max_warnings: 271 + max_warnings: 264 - name: GCC-7 (Ubuntu 18.04) os: ubuntu-18.04 flags: -c gcc - max_warnings: 274 + max_warnings: 267 - name: GCC-9 (Ubuntu 18.04) os: ubuntu-18.04 flags: -c gcc -v 9 - max_warnings: 297 + max_warnings: 290 - name: Clang-8 (Ubuntu 18.04) os: ubuntu-18.04 flags: -c clang -v 8 - max_warnings: 155 + max_warnings: 150 steps: - uses: actions/checkout@v1 - run: sudo apt-get update diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 706c8cd8..9d9a4698 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,10 +11,10 @@ jobs: conf: - name: Clang flags: -c clang - max_warnings: 207 + max_warnings: 202 - name: GCC-9 flags: -c gcc -v 9 - max_warnings: 284 + max_warnings: 277 steps: - uses: actions/checkout@v1 - name: Install C++ compiler and libraries diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 614827a7..cfb745a9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -16,15 +16,15 @@ jobs: - compiler: GCC bits: 64 arch: x86_64 - max_warnings: 292 + max_warnings: 285 - compiler: Clang bits: 32 arch: i686 - max_warnings: 97 + max_warnings: 93 - compiler: Clang bits: 64 arch: x86_64 - max_warnings: 141 + max_warnings: 136 env: CHERE_INVOKING: yes steps: