summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2024-01-22 10:43:41 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2024-01-22 13:24:07 +0000
commit2de076d679833e5333694f654b83f832a86390d7 (patch)
tree776a390e1f1a67b6b49b11e2ea4260b703ec8866
parentd5d81c0db30383ab744faa5cba509f41806047ad (diff)
round-robin.sh (build_abe): Do not send results for "fast_check" projects
*_fast_check_* projects run only a subset of the testsuite, so we don't want to post their results, whose numbers whould be confusing. Change-Id: I210486ad17584991ac158062fa3cac002bb3933c
-rw-r--r--round-robin.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/round-robin.sh b/round-robin.sh
index b5b8a079..b9aae98d 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -500,8 +500,14 @@ build_abe ()
rerun_failed_tests+=("--failures-expiration-date" "$week_from_now")
fi
- send_results=("--send-results-to" "christophe.lyon@linaro.org"
- "--send-results-filter" "$(pwd)/abe/scripts/testresults2jenkins.sh")
+ case "${rr[ci_project]}" in
+ # Don't send results for partial 'make check'
+ *_fast_check_*) ;;
+ *)
+ send_results=("--send-results-to" "christophe.lyon@linaro.org"
+ "--send-results-filter" "$(pwd)/abe/scripts/testresults2jenkins.sh")
+ ;;
+ esac
fi
if [ x"$project" = x"gcc" ]; then