mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-11-28 04:20:33 +00:00
codechecker-buildbot.sh: Don't fail if a static analysis issue is reported.
This commit is contained in:
parent
a6b45fa7cf
commit
a47f59bbe5
@ -31,7 +31,13 @@ perl -w -pi -e 's/\-arch\s+.*?\s+//g;' compile_commands.json
|
||||
|
||||
rm -rf ../analysis
|
||||
CodeChecker analyze compile_commands.json -o ./reports
|
||||
|
||||
# "parse" returns 2 if there was a static analysis issue to report, but this
|
||||
# does not signify an error in the parsing (that would be error code 1). Turn
|
||||
# off the abort-on-error flag.
|
||||
set +e
|
||||
CodeChecker parse ./reports -e html -o ../analysis
|
||||
set -e
|
||||
|
||||
cd ..
|
||||
chmod -R a+r analysis
|
||||
|
Loading…
Reference in New Issue
Block a user