summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-05-31 08:29:10 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-05-31 08:29:10 +0000
commita367dd26b5020f1e7fde076c3c469ab1d68a94eb (patch)
treea77e86c317d53c318452aac0c033409a86075d35
parentc0e26f3027e4a6c623d1f392cbb9f4fa3ac856cf (diff)
round-robin-bisect.sh: Fix references to $linux_url
... replace them with $bad_url. Change-Id: I73224638e852367ed8c42a178f36e9f7bf6c401e
-rwxr-xr-xround-robin-bisect.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index 004196ee..72942452 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -50,7 +50,7 @@ case "${rr[ci_project]}/${rr[ci_config]}:$current_project" in
tcwg_kernel/*-next-*:linux)
# Workaround linux-next/master rebasing on top of linux-next/stable.
# Search for regressions against linux-mainline:master (aka linux-next:stable).
- clone_or_update_repo $current_project stable ${rr[linux_url]}
+ clone_or_update_repo $current_project stable $bad_url
# Just in case linux-next:stable has advanced between the build and bisect jobs,
# use merge base between linux-next:stable and $bad_branch.
bad_rev="${bad_rev-$(git_rev_parse_long $current_project $bad_branch)}"
@@ -204,7 +204,7 @@ EOF
*) assert_with_msg "Unknown project name: $project_name" false ;;
esac
cat >> $artifacts/trigger-build-rebase <<EOF
-linux_url=${rr[linux_url]}
+linux_url=$bad_url
linux_branch=$baseline_rev
update_baseline=reset
EOF