aboutsummaryrefslogtreecommitdiff
path: root/tcwg-regression-detection.yaml
diff options
context:
space:
mode:
authorThomas Preud'homme <thomas.preudhomme@linaro.org>2018-07-26 14:24:21 +0100
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2018-07-29 12:06:50 +0000
commit6af81187609e84119103d2ef6cbbe13ea6ca710f (patch)
treee7d744c3ab5e24d56b2bad7893c3b2c003f213b2 /tcwg-regression-detection.yaml
parent06de3cc05009c95385ad953f786accd767ef5040 (diff)
Fix tcwg-regression-detection failure
Quote removal is not performed in here-document so the setting of extra_options for dev build testing will lead to that variable having quotes in it. That later trips the eval in tcwg-dev-build because the second evalation will execute "abe_branch=foo distro=bar" rather than abe_branch=foo distro=bar. The former is interpreted as a command to execute while the latter is 2 variables being set. This patch removes the quote from the here-document setting extra_options as it is not necessary. Change-Id: If0a5cc7ad159a5ebb835a4093d97baf85ccd5052
Diffstat (limited to 'tcwg-regression-detection.yaml')
-rw-r--r--tcwg-regression-detection.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcwg-regression-detection.yaml b/tcwg-regression-detection.yaml
index 2dbd5c1e..dc7ba5c4 100644
--- a/tcwg-regression-detection.yaml
+++ b/tcwg-regression-detection.yaml
@@ -155,7 +155,7 @@
target=${release_target_list%% *}
version=default
scripts_branch=$cur_scripts_branch
- extra_options="abe_branch=$cur_abe_rev distro=$distro"
+ extra_options=abe_branch=$cur_abe_rev distro=$distro
EOF
echo "NOTE: Dev build job parameters:"