aboutsummaryrefslogtreecommitdiff
path: root/tcwg-dev-build.yaml
diff options
context:
space:
mode:
authorThomas Preud'homme <thomas.preudhomme@linaro.org>2018-07-04 18:51:04 +0100
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2018-07-20 12:12:59 +0000
commit230af59516e0d77c28a92c4b122a95d77f1b2b24 (patch)
tree2023e889db228a01eb27434a064400b6b0f9656b /tcwg-dev-build.yaml
parent40e0284f29879397db2d133c6333af7b55f8e05f (diff)
tcwg-dev-build: Add overrides for script invokation
This change adds new variable to control the abe branch being tested and on which distribution to perform the test. It also adds an extra_options parameter to be able to override all parameters passed to docker-run and the tcwg-dev-build.sh script. Depends-On: I03b3bf7b94dbaa2a0d7612fb05b70c1d8c10a38c Change-Id: I6303fc9bc71daaef0f6455c4e83f4ef779d90845
Diffstat (limited to 'tcwg-dev-build.yaml')
-rw-r--r--tcwg-dev-build.yaml10
1 files changed, 9 insertions, 1 deletions
diff --git a/tcwg-dev-build.yaml b/tcwg-dev-build.yaml
index b9fa9872..324e52c9 100644
--- a/tcwg-dev-build.yaml
+++ b/tcwg-dev-build.yaml
@@ -54,6 +54,10 @@
name: scripts_branch
default: master
description: 'Scripts revision to use'
+ - text:
+ name: extra_options
+ default:
+ description: 'Extra options to pass to docker-run'
disabled: false
node: tcwg-x86_64-build
concurrent: true
@@ -83,7 +87,11 @@
- shell: |
#!/bin/bash
set -ex
- ./docker-run.sh -- ./tcwg-dev-build.sh \
+ abe_branch=tested
+ distro=default
+ eval $extra_options
+ ./docker-run.sh --distro "$distro" -- ./tcwg-dev-build.sh \
+ --abe_branch "$abe_branch" \
--release_name "$release_name" \
--target "$target" \
--version "$version" \