From cfde4abec304f5f19f1400d3960b2e509e7929eb Mon Sep 17 00:00:00 2001 From: Fedja Beader Date: Mon, 10 Feb 2025 17:20:27 +0000 Subject: Properly fail the failing cpplint.py part of linters CI job Squashed with: * Split out change * Let's get this to properly fail, first. put unfiltered file name into a variable and append .log to make it viewable online + direct URL for cpplint.py like before IT's LOGFILE, not ERRFILE.. sigh Nevermind, it actually is ERRFILE + add unfiltered version to init Downgrade version, py3 later Let's get unfiltered log to print if find fails Related: mana/plus!122 **** mana/plus!123 --- tools/ci/jobs/cpplint.sh | 22 +++++++++++++--------- tools/ci/scripts/init.sh | 2 ++ 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/tools/ci/jobs/cpplint.sh b/tools/ci/jobs/cpplint.sh index b51694b3b..fd73705dc 100755 --- a/tools/ci/jobs/cpplint.sh +++ b/tools/ci/jobs/cpplint.sh @@ -1,7 +1,9 @@ #!/usr/bin/env bash -export LOGFILE=cpplint.log +set -e # Fail if any command fails +set -u # Fail if any variable is unset when used +export LOGFILE=cpplint.log source ./tools/ci/scripts/init.sh # Re-download if not executable or older than a day @@ -45,16 +47,18 @@ args+=("--filter=\ find src \ -type f \ -name "*.cpp" -o -name "*.hpp" -o -name "*.h" -o -name "*.cc" \ - -exec ./cpplint.py "${args[@]}" {} \+ 2>${ERRFILE}2 + -exec ./cpplint.py "${args[@]}" {} \+ 2>"$ERRFILE_UNFILTERED" \ + || { cat "$ERRFILE_UNFILTERED"; exit 1; } -grep ": " ${ERRFILE}2 | grep -v -e "src/debug/" \ - -e "unittests/doctest.h" \ - -e "unittests/catch.hpp" \ - -e "debug/fast_mutex" \ - -e "sdl2gfx/SDL2" \ - >${ERRFILE} +# if grep does not find any messages, it exits non-zero +grep ": " "$ERRFILE_UNFILTERED" \ + | grep -v -e "src/debug/" \ + -e "unittests/doctest.h" \ + -e "unittests/catch.hpp" \ + -e "debug/fast_mutex" \ + -e "sdl2gfx/SDL2" \ + >${ERRFILE} || true -rm ${ERRFILE}2 run_check_warnings diff --git a/tools/ci/scripts/init.sh b/tools/ci/scripts/init.sh index 54b0ac64f..8e84054ff 100755 --- a/tools/ci/scripts/init.sh +++ b/tools/ci/scripts/init.sh @@ -2,8 +2,10 @@ export dir=$(pwd) export ERRFILE=${dir}/logs/${LOGFILE} +export ERRFILE_UNFILTERED=${ERRFILE%.log}.unfiltered.log rm -f "$ERRFILE" +rm -f "$ERRFILE_UNFILTERED" function do_init { $CC --version -- cgit v1.2.3-70-g09d2