1
0
Fork 0

Update allowed warnings limits

This commit is contained in:
krcroft 2020-03-18 17:17:43 -07:00 committed by Patryk Obara
parent 5b8364148a
commit 694e6f6cb1
4 changed files with 9 additions and 9 deletions

View file

@ -57,7 +57,7 @@ jobs:
path: report
- name: Summarize report
env:
MAX_BUGS: 216
MAX_BUGS: 215
run: |
# summary
echo "Full report is included in build Artifacts"
@ -127,7 +127,7 @@ jobs:
path: pvs-report
- name: Summarize report
env:
MAX_BUGS: 524
MAX_BUGS: 496
run: |
echo "Full report is included in build Artifacts"
echo
@ -149,7 +149,7 @@ jobs:
sanitizers: TSAN UASAN
usan: -1
tsan: 0 # our test does not trigger multiple threads yet
uasan: 177
uasan: 80
steps:
- uses: actions/checkout@v1
with:

View file

@ -12,15 +12,15 @@ jobs:
- name: GCC-5 (Ubuntu 16.04)
os: ubuntu-16.04
flags: -c gcc
max_warnings: 86
max_warnings: 60
- name: GCC-7 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc
max_warnings: 88
max_warnings: 62
- name: GCC-9 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc -v 9
max_warnings: 107
max_warnings: 81
- name: Clang-8 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c clang -v 8

View file

@ -14,7 +14,7 @@ jobs:
max_warnings: 62
- name: GCC-9
flags: -c gcc -v 9
max_warnings: 99
max_warnings: 82
steps:
- uses: actions/checkout@v1
with:

View file

@ -24,11 +24,11 @@ jobs:
- compiler: GCC
bits: 32
arch: i686
max_warnings: 66
max_warnings: 49
- compiler: GCC
bits: 64
arch: x86_64
max_warnings: 99
max_warnings: 82
env:
CHERE_INVOKING: yes
steps: