summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-05-29 15:58:48 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-05-29 16:24:06 +0000
commitf83ab343d2ab4a1f5d624e770202bf47a3a5ef15 (patch)
tree8a582e29e56c1d2ef981b667962079bf5369119a
parent75019552b97c7ca46083dacf80789df24faf5a92 (diff)
round-robin*.sh: Pass component URL alongside component branches
... when not using special "baseline" branch specifier. Change-Id: If3aabeb1a2729b8d270d842fdd0ad5809ebc990d
-rwxr-xr-xround-robin-bisect.sh1
-rw-r--r--round-robin.sh1
2 files changed, 2 insertions, 0 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index d44a2e18..cd387a0c 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -204,6 +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_branch=$baseline_rev
update_baseline=reset
EOF
diff --git a/round-robin.sh b/round-robin.sh
index e5a1164a..1a8ede27 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -579,6 +579,7 @@ No reason to rebase base-artifacts."
update_components2=$(echo "${update_components[@]}" | tr ' ' '-')
for c in ${rr[components]}; do
+ echo "${c}_url=${rr[${c}_url]}"
if echo "${update_components[@]}" | tr ' ' '\n' | grep -q "^$c\$"; then
echo "${c}_branch=${rr[${c}_branch]}"
else