diff options
author | qun wan <qun.wan@intel.com> | 2017-06-14 20:42:10 -0400 |
---|---|---|
committer | qun wan <qun.wan@intel.com> | 2017-06-14 22:24:48 -0400 |
commit | 125e8685f92e37f35f67937ea920f71af6530da4 (patch) | |
tree | 6a804358cf83b795af4fe1be461e21c60e8b2493 | |
parent | 6b1cd8c5011be54b03cb235dd460995e80ee9ea1 (diff) |
Patches for tldk ci-management on the bootstrap.sh not found bug.6
Change-Id: Ibece4f29f8346f4c5d571b97f72d4d66ec91f8a5
Signed-off-by: qun wan <qun.wan@intel.com>
-rw-r--r-- | jjb/tldk/include-raw-csit-tldk-functional-virl.sh | 12 | ||||
-rw-r--r-- | jjb/tldk/tldk.yaml | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/jjb/tldk/include-raw-csit-tldk-functional-virl.sh b/jjb/tldk/include-raw-csit-tldk-functional-virl.sh index b18290cdc..1f57e8255 100644 --- a/jjb/tldk/include-raw-csit-tldk-functional-virl.sh +++ b/jjb/tldk/include-raw-csit-tldk-functional-virl.sh @@ -1,4 +1,16 @@ #!/bin/bash +set -xeu -o pipefail + +# Clone csit and start tests +git clone https://gerrit.fd.io/r/csit + +# If the git clone fails, complain clearly and exit +if [ $? != 0 ]; then + echo "Failed to run: git clone https://gerrit.fd.io/r/csit" +exit +fi + +cd csit # execute nsh_sfc bootstrap script if it exists if [ -e bootstrap-TLDK.sh ] diff --git a/jjb/tldk/tldk.yaml b/jjb/tldk/tldk.yaml index a91183cb2..3f86e96a2 100644 --- a/jjb/tldk/tldk.yaml +++ b/jjb/tldk/tldk.yaml @@ -8,9 +8,7 @@ project: 'tldk' os: - - ubuntu1404 - ubuntu1604 - - centos7 stream: - master: branch: 'master' |