1
0
Fork 0

Update allowed warning limits

This commit is contained in:
krcroft 2020-04-11 13:54:40 -07:00 committed by Patryk Obara
parent 31d4f485c8
commit 25e9cfe491
4 changed files with 10 additions and 10 deletions

View file

@ -97,14 +97,14 @@ jobs:
conf:
- name: Clang
sanitizers: USAN
usan: 93
usan: 86
tsan: -1
uasan: -1
- name: GCC
sanitizers: TSAN UASAN
usan: -1
tsan: 0 # our test does not trigger multiple threads yet
uasan: 80
uasan: 36
steps:
- uses: actions/checkout@v1
with:

View file

@ -26,11 +26,11 @@ jobs:
- name: GCC-9 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc -v 9
max_warnings: 76
max_warnings: 57
- name: Clang-8 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c clang -v 8
max_warnings: 57
max_warnings: 38
steps:
- uses: actions/checkout@v1
with:

View file

@ -17,10 +17,10 @@ jobs:
conf:
- name: Clang
flags: -c clang
max_warnings: 58
max_warnings: 39
- name: GCC-9
flags: -c gcc -v 9
max_warnings: 77
max_warnings: 58
steps:
- uses: actions/checkout@v1
with:

View file

@ -17,19 +17,19 @@ jobs:
- compiler: Clang
bits: 32
arch: i686
max_warnings: 28
max_warnings: 9
- compiler: Clang
bits: 64
arch: x86_64
max_warnings: 60
max_warnings: 41
- compiler: GCC
bits: 32
arch: i686
max_warnings: 45
max_warnings: 26
- compiler: GCC
bits: 64
arch: x86_64
max_warnings: 77
max_warnings: 58
env:
CHERE_INVOKING: yes
CCACHE_DIR: "${{ github.workspace }}/.ccache"