From 108671337ab4a4721b509c21ec92b0ae850fdf49 Mon Sep 17 00:00:00 2001 From: Patrick Gartung Date: Fri, 20 Sep 2024 22:08:42 +0200 Subject: [PATCH] Add || true to continue on error in compare_maxmem_summary.py --- pr_testing/run-pr-comparisons | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_testing/run-pr-comparisons b/pr_testing/run-pr-comparisons index 368280a139d..71b2ed2bcd3 100755 --- a/pr_testing/run-pr-comparisons +++ b/pr_testing/run-pr-comparisons @@ -402,7 +402,7 @@ for WF in ${WORKFLOWS_TO_COMPARE//,/ }; do $CMS_BOT_DIR/comparisons/compare-maxmem.py $WORKSPACE/data/PR-${PR_NUM}/$WF_DIR/maxmem_profile_${WF_NUMBER}.txt $WORKSPACE/data/$COMPARISON_RELEASE/$WF_DIR/maxmem_profile_${WF_NUMBER}.txt > $OUTPUT_DIR/${WF_NUMBER}.json 2> $OUTPUT_DIR/${WF_NUMBER}.err || true fi done -$CMS_BOT_DIR/comparisons/compare-maxmem-summary.py -i $OUTPUT_DIR -f '*.json' -F html -o $OUTPUT_DIR/index.html -u $JENKINS_ARTIFACTS_URL/$PR_BASELINE_DIR +$CMS_BOT_DIR/comparisons/compare-maxmem-summary.py -i $OUTPUT_DIR -f '*.json' -F html -o $OUTPUT_DIR/index.html -u $JENKINS_ARTIFACTS_URL/$PR_BASELINE_DIR || true if grep "exceeds threshold" $OUTPUT_DIR/*.err 2>/dev/null; then echo "MAXMEM_COMPARISON${TEST_FLAVOR_STR};OK,max memory used ${UC_TEST_FLAVOR} comparison,See results,/SDT/jenkins-artifacts/$COMP_UPLOAD_DIR/maxmem-comparison" >> ${RESULTS_FILE} else