aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2017-04-10 14:39:21 +0100
committerRenato Golin <renato.golin@linaro.org>2017-04-10 13:46:59 +0000
commitf21bb3c9da1eeb5dfad8a980cf74d9ff46e84175 (patch)
tree5fc179ea7f2c2107e29a93bfc073dbe72d8ced62
parent4af6133befac3d64512673977eefeae6671b1f25 (diff)
tcwg-llvm-staged-build.yaml: Adding toolchain parameter
Somehow we lost the toolchain parameter when moving to containers (from Christophe's version of the yaml file). This adds it back. Change-Id: I53a5ae812e4b6b0da8ba551911d7cc59eacc3eb9
-rw-r--r--tcwg-llvm-staged-build.yaml7
1 files changed, 6 insertions, 1 deletions
diff --git a/tcwg-llvm-staged-build.yaml b/tcwg-llvm-staged-build.yaml
index 2701e519ff..e99c82e62e 100644
--- a/tcwg-llvm-staged-build.yaml
+++ b/tcwg-llvm-staged-build.yaml
@@ -17,6 +17,10 @@
weight: 3
parameters:
- string:
+ name: toolchain
+ default: ''
+ description: 'URL of the toolchain to use. This needs to be a tarball with a /bin directory inside with either GCC or LLVM from make install'
+ - string:
name: build_container_tag
default: 'xenial'
description: 'Type of image to use in the container: trusty, xenial.'
@@ -78,4 +82,5 @@
${BUILD_CONTAINER} "cd ${WORKSPACE} && bash -x ${WORKSPACE}/tcwg-llvm-build.sh \
--workspace=${WORKSPACE} \
--buildid=${BUILD_ID} \
- --linkjobs=${linkjobs}"
+ --linkjobs=${linkjobs}" \
+ --toolchain=${toolchain}