From 7931af49e33883fdef360c54b682029ca40f75f8 Mon Sep 17 00:00:00 2001 From: Andrea Valassi Date: Mon, 30 Oct 2023 18:30:28 +0100 Subject: [PATCH] [actions] in actions, use the "quiet" version of generateAndCompare for the 'manual' codegen test --- .github/workflows/manual.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual.sh b/.github/workflows/manual.sh index 45e85b8008..29c2c6eeb8 100755 --- a/.github/workflows/manual.sh +++ b/.github/workflows/manual.sh @@ -44,10 +44,10 @@ for proc in $processes; do echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@" if [ "${proc%.mad}" != "${proc}" ]; then # Generate code and check clang formatting - ./CODEGEN/generateAndCompare.sh ${proc%.mad} --mad + ./CODEGEN/generateAndCompare.sh -q ${proc%.mad} --mad elif [ "${proc%.sa}" != "${proc}" ]; then # Generate code and check clang formatting - ./CODEGEN/generateAndCompare.sh ${proc%.sa} + ./CODEGEN/generateAndCompare.sh -q ${proc%.sa} else echo "WARNING! SKIP process directory '${proc}' because it does not end in .mad or .sa" fi