summaryrefslogtreecommitdiff
path: root/round-robin.sh
diff options
context:
space:
mode:
Diffstat (limited to 'round-robin.sh')
-rw-r--r--round-robin.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 957ce44c..e5a1164a 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -592,9 +592,14 @@ No reason to rebase base-artifacts."
baseline_rev=$(git_rev_parse_long $single_component ${rr[baseline_branch]} baseline)
cur_rev=$(git -C $single_component rev-parse HEAD)
+ if [ x"$baseline_rev" = x"$cur_rev" ]; then
+ echo "WARNING: Detected regression with no change in sources of $single_component"
+ false
+ fi
+
cat > $trigger_dest/trigger-bisect <<EOF
current_project=$single_component
-baseline_branch=$baseline_rev
+bad_url=${rr[${single_component}_url]}
bad_branch=$cur_rev
EOF
if [ -f $run_step_artifacts/extra-bisect-params ]; then