From 1f4e150ca74eafb485f2c936dfa5892bb76e66fe Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Wed, 1 Sep 2021 07:01:52 +0000 Subject: [PATCH] gitlab-ci (Clang): Add Clang Analyzer ouput to artifacts --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d699d921e..5303f5ce2b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -561,11 +561,12 @@ Code Checks + Clang Warnings: - script --command ninja --flush --quiet --return ../clang_report.txt - ansi2html < ../clang_report.txt > ../clang_report.html - ./run/tshark -v - - ../tools/validate-clang-check.sh -c $CLANG_VERSION + - ../tools/validate-clang-check.sh -c $CLANG_VERSION 2> >(tee ../clang_analyzer_check.txt) - ninja checkAPI artifacts: paths: - clang_report.html + - clang_analyzer_check.txt - cppcheck_report.html - cppcheck_report.xml - item_calls_check.txt