aboutsummaryrefslogtreecommitdiff
path: root/linaro-edk2-prep-matrix.yaml
diff options
context:
space:
mode:
authorRoy Franz <roy.franz@linaro.org>2015-06-02 15:17:51 -0700
committerRoy Franz <roy.franz@linaro.org>2015-06-02 15:17:51 -0700
commit7ff149c8ab651dc1222499390f157ba2e68e82a1 (patch)
tree89c3555e57686f3928ee6f0366a73c3319900805 /linaro-edk2-prep-matrix.yaml
parent5ea1bf3449cfae9fa1c727cdd6cee114cc9a3083 (diff)
Remove touchstone/first build stuff, set sequential build, remove early exit
Change-Id: I017eda2a2324def05c1a02f83e981c445c1270dc Signed-off-by: Roy Franz <roy.franz@linaro.org>
Diffstat (limited to 'linaro-edk2-prep-matrix.yaml')
-rw-r--r--linaro-edk2-prep-matrix.yaml17
1 files changed, 2 insertions, 15 deletions
diff --git a/linaro-edk2-prep-matrix.yaml b/linaro-edk2-prep-matrix.yaml
index 854198f5a8..2b64110293 100644
--- a/linaro-edk2-prep-matrix.yaml
+++ b/linaro-edk2-prep-matrix.yaml
@@ -67,9 +67,7 @@
values:
- docker-utopic
execution-strategy:
- combination-filter: |
- MX_B=="qemu64" && MX_TYPE=="RELEASE" && MX_TC=="48"
-# sequential: true
+ sequential: true
wrappers:
- timestamps
# - build-name:
@@ -89,21 +87,10 @@
set -ex
- # Here we check if we are the 'touchstone build. There _MUST_ be only 1 of these, as this is used
- # to do some per-build setup (initialize reference repository, etc)
- # This configuration will build first, and by itself. After this is successful, then
- # other builds can go in parallel.
- export FIRST_BUILD=0
- if [ ${MX_B} == "qemu64" && ${MX_TYPE} == "RELEASE" && ${MX_TC} == "48" ]; then
- export FIRST_BUILD=1
- fi
- echo "FIRST_BUILD: ${FIRST_BUILD}"
-
WS_BASE=$(pwd)
echo "WS_BASE is: ${WS_BASE}"
- export WS_BASE
+ ls -al
- exit;
trap cleanup_exit INT TERM EXIT