From 6c0897393b2d566d0d75b104bbbc1996c2f6ef20 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 13 Sep 2021 18:53:50 +0000 Subject: [PATCH] GitLab CI: remove ANSI color when generate Clang Check Analyzer text log --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b6d838470e..256b1b9451 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -563,8 +563,9 @@ Code Checks + Clang Warnings: - script --command ninja --flush --quiet --return ../clang_report.txt - ansi2html < ../clang_report.txt > ../clang_report.html - ./run/tshark -v 2> >(tee ../checkhf_conflict.txt) - - ../tools/validate-clang-check.sh -c $CLANG_VERSION 2> >(tee ../clang_analyzer_check.txt) - - ninja checkAPI + - ../tools/validate-clang-check.sh -c $CLANG_VERSION 2> >(tee ../tmp_clang_analyzer_check.txt) + - ansi2txt < ../tmp_clang_analyzer_check.txt > ../clang_analyzer_check.txt + - ninja checkAPI artifacts: paths: - clang_report.html