1
0
Fork 0

Update allowed warnings limits

This commit is contained in:
krcroft 2019-12-06 17:45:28 -08:00 committed by Patryk Obara
parent cff6b05559
commit 959417f6de
3 changed files with 7 additions and 7 deletions

View file

@ -47,7 +47,7 @@ jobs:
path: report
- name: Summarize report
env:
MAX_BUGS: 81
MAX_BUGS: 80
run: |
# summary
echo "Full report is included in build Artifacts"

View file

@ -12,19 +12,19 @@ jobs:
- name: GCC-5 (Ubuntu 16.04)
os: ubuntu-16.04
flags: -c gcc
max_warnings: 284
max_warnings: 283
- name: GCC-7 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc
max_warnings: 287
max_warnings: 286
- name: GCC-9 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc -v 9
max_warnings: 310
max_warnings: 309
- name: Clang-8 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c clang -v 8
max_warnings: 157
max_warnings: 156
steps:
- uses: actions/checkout@v1
- run: sudo apt-get update

View file

@ -11,10 +11,10 @@ jobs:
conf:
- name: Clang
flags: -c clang
max_warnings: 209
max_warnings: 208
- name: GCC-9
flags: -c gcc -v 9
max_warnings: 297
max_warnings: 296
steps:
- uses: actions/checkout@v1
- name: Install C++ compiler and libraries