1
0
Fork 0

Update allowed warnings limits

This commit is contained in:
Patryk Obara 2020-03-28 05:15:27 +01:00 committed by Patryk Obara
parent 1d704d49a5
commit d4b2f2167a
4 changed files with 11 additions and 11 deletions

View file

@ -81,7 +81,7 @@ jobs:
path: report
- name: Summarize report
env:
MAX_BUGS: 215
MAX_BUGS: 214
run: |
# summary
echo "Full report is included in build Artifacts"
@ -151,7 +151,7 @@ jobs:
path: pvs-report
- name: Summarize report
env:
MAX_BUGS: 511
MAX_BUGS: 510
run: |
echo "Full report is included in build Artifacts"
echo

View file

@ -18,19 +18,19 @@ jobs:
- name: GCC-5 (Ubuntu 16.04)
os: ubuntu-16.04
flags: -c gcc
max_warnings: 60
max_warnings: 56
- name: GCC-7 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc
max_warnings: 62
max_warnings: 58
- name: GCC-9 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c gcc -v 9
max_warnings: 81
max_warnings: 77
- name: Clang-8 (Ubuntu 18.04)
os: ubuntu-18.04
flags: -c clang -v 8
max_warnings: 58
max_warnings: 57
steps:
- uses: actions/checkout@v1
with:

View file

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

View file

@ -21,15 +21,15 @@ jobs:
- compiler: Clang
bits: 64
arch: x86_64
max_warnings: 59
max_warnings: 58
- compiler: GCC
bits: 32
arch: i686
max_warnings: 49
max_warnings: 46
- compiler: GCC
bits: 64
arch: x86_64
max_warnings: 82
max_warnings: 78
env:
CHERE_INVOKING: yes
CCACHE_DIR: "${{ github.workspace }}/.ccache"