Skip to content

Commit 27f8c21

Browse files
pdgendtcarlescufi
authored andcommitted
cmake: sca: codechecker: Support storing results
Introduce CODECHECKER_STORE parameters to upload results to an active CodeChecker server. Signed-off-by: Pieter De Gendt <[email protected]>
1 parent 82b1c99 commit 27f8c21

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

cmake/sca/codechecker/sca.cmake

+13
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ add_custom_target(codechecker ALL
2323
--keep-gcc-include-fixed
2424
--keep-gcc-intrin
2525
--output ${output_dir}/codechecker.plist
26+
--name zephyr # Set a default metadata name
2627
${CODECHECKER_ANALYZE_OPTS}
2728
${CMAKE_BINARY_DIR}/compile_commands.json
2829
DEPENDS ${CMAKE_BINARY_DIR}/compile_commands.json ${output_dir}/codechecker.ready
@@ -71,3 +72,15 @@ else()
7172
COMMAND_EXPAND_LISTS
7273
)
7374
endif()
75+
76+
if(CODECHECKER_STORE OR CODECHECKER_STORE_OPTS)
77+
add_custom_command(
78+
TARGET codechecker POST_BUILD
79+
COMMAND ${CODECHECKER_EXE} store
80+
${CODECHECKER_STORE_OPTS}
81+
${output_dir}/codechecker.plist
82+
VERBATIM
83+
USES_TERMINAL
84+
COMMAND_EXPAND_LISTS
85+
)
86+
endif()

doc/develop/sca/codechecker.rst

+18
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,24 @@ To configure CodeChecker or analyzers used, arguments can be passed using the
4242
-DCODECHECKER_ANALYZE_OPTS="--config;$CODECHECKER_CONFIG_FILE;--timeout;60"
4343
4444
45+
Storing CodeChecker results
46+
***************************
47+
48+
If a CodeChecker server is active the results can be uploaded and stored for tracking purposes.
49+
Storing is done using the optional ``CODECHECKER_STORE=y`` or ``CODECHECKER_STORE_OPTS="arg;list"``
50+
parameters, e.g.
51+
52+
.. code-block:: shell
53+
54+
west build -b mimxrt1064_evk samples/basic/blinky -- -DZEPHYR_SCA_VARIANT=codechecker \
55+
-DCODECHECKER_STORE_OPTS="--name;build;--url;localhost:8001/Default"
56+
57+
.. note::
58+
59+
If ``--name`` isn't passed to either ``CODECHECKER_ANALYZE_OPTS`` or ``CODECHECKER_STORE_OPTS``,
60+
the default ``zephyr`` is used.
61+
62+
4563
Exporting CodeChecker reports
4664
*****************************
4765

0 commit comments

Comments
 (0)