forked from Ericsson/codechecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[config] Support yaml CodeChecker configuration files
- Loading branch information
1 parent
fc3d1fe
commit 92aedce
Showing
14 changed files
with
343 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
analyzer: | ||
# Enable/disable checkers. | ||
- --enable=core.DivideZero | ||
- --enable=core.CallAndMessage | ||
# Analyzer configurations. | ||
- --analyzer-config=clangsa:unroll-loops=true | ||
- --checker-config=clang-tidy:google-readability-function-size.StatementThreshold=100 | ||
# Optional options. | ||
- --report-hash=context-free-v2 | ||
- --verbose=debug | ||
- --clean | ||
|
||
parse: | ||
- --trim-path-prefix=$HOME/workspace | ||
|
||
server: | ||
- --workspace=$HOME/workspace" | ||
- --port=9090" | ||
|
||
store: | ||
- --name=run_name | ||
- --tag=my_tag | ||
- --url=http://codechecker.my:9090/MyProduct |
Oops, something went wrong.