summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-10-01 09:13:30 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-10-01 09:13:30 +0000
commit3f1cc8d93d0c3c90f3fc8fe519064524d3186002 (patch)
tree6d396968d111d82c405db03806918fc93193e759
parentae3ef5bd5a618f94e2d6ff20bd40142d31742df9 (diff)
round-robin-bisect.sh: Move regression reports to per-project lists
Change-Id: I8bb5f386f7fe18abf3c60d8f57beb0ae50b3bbb2
-rwxr-xr-xround-robin-bisect.sh29
1 files changed, 17 insertions, 12 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index 8c6c2495..c7a51f30 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -769,21 +769,24 @@ EOF
""@*/*:*) ;;
*@tcwg_gcc*/*:*)
CI_MAIL_RECIPIENTS+=("$notify_author")
- CI_MAIL_RECIPIENTS+=("cc:linaro-toolchain@lists.linaro.org")
+ CI_MAIL_RECIPIENTS+=("cc:gcc-regression@gcc.gnu.org")
;;
*@tcwg_gnu*/*:*)
CI_MAIL_RECIPIENTS+=("$notify_author")
- CI_MAIL_RECIPIENTS+=("cc:linaro-toolchain@lists.linaro.org")
+ CI_MAIL_RECIPIENTS+=("cc:gcc-regression@gcc.gnu.org")
;;
*@tcwg_kernel/llvm-*:linux)
CI_MAIL_RECIPIENTS+=("$notify_author")
- CI_MAIL_RECIPIENTS+=("cc:linaro-toolchain@lists.linaro.org")
CI_MAIL_RECIPIENTS+=("cc:llvm@lists.linux.dev")
- CI_MAIL_RECIPIENTS+=("arnd@linaro.org")
+ CI_MAIL_RECIPIENTS+=("cc:arnd@linaro.org")
;;
- *@tcwg_kernel/llvm-*:llvm)
+ *@tcwg_kernel/*:linux)
+ CI_MAIL_RECIPIENTS+=("$notify_author")
+ CI_MAIL_RECIPIENTS+=("cc:linaro-kernel@lists.linaro.org")
+ CI_MAIL_RECIPIENTS+=("cc:arnd@linaro.org")
+ ;;
+ *@tcwg_kernel/*:llvm)
CI_MAIL_RECIPIENTS+=("$notify_author")
- CI_MAIL_RECIPIENTS+=("cc:linaro-toolchain@lists.linaro.org")
CI_MAIL_RECIPIENTS+=("cc:llvm@lists.linux.dev")
;;
*@tcwg_kernel/*:*)
@@ -794,12 +797,14 @@ EOF
# Don't report regressions for vectorization, while we are
# debugging it.
;;
- *@tcwg_bmk*/*:*)
- # Don't notify patch authors until we improve benchmarking email
- # reporting.
- #CI_MAIL_RECIPIENTS+=("$notify_author")
- CI_MAIL_RECIPIENTS+=("linaro-toolchain@lists.linaro.org")
- ;;
+ *@tcwg_bmk_gcc*/*:*)
+ CI_MAIL_RECIPIENTS+=("$notify_author")
+ CI_MAIL_RECIPIENTS+=("cc:gcc-regression@gcc.gnu.org")
+ ;;
+ *@tcwg_bmk_llvm*/*:*)
+ CI_MAIL_RECIPIENTS+=("$notify_author")
+ CI_MAIL_RECIPIENTS+=("linaro-toolchain@lists.linaro.org")
+ ;;
*@*/*:*)
CI_MAIL_RECIPIENTS+=("linaro-toolchain@lists.linaro.org")
;;