aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2021-09-13 18:53:50 +0000
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-09-22 04:44:28 +0000
commit6c0897393b2d566d0d75b104bbbc1996c2f6ef20 (patch)
tree9b90ef77888acf0e5d286d4c9695044fd4b5b082 /.gitlab-ci.yml
parent07b0c4e78a6677145f8750993cf7d14bdb633624 (diff)
GitLab CI: remove ANSI color when generate Clang Check Analyzer text log
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files 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