diff options
author | Josep Puigdemont <josep.puigdemont@enea.com> | 2016-05-06 23:28:21 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2016-05-08 17:35:03 +0000 |
commit | f588c014f099ed1f115904afe43a1552aa7817b5 (patch) | |
tree | d9747de948a7d0ce116ff5b09916db536ebf8a50 | |
parent | 1158f729444aa16313e263b468e92555f8eb7eb4 (diff) |
deploy.sh: simple wrapper for fuel@opnfv deploy script
Change-Id: I2b94d6fcb20c59d9d776c04561665108e1f035ca
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
(cherry picked from commit bf9b024d1e6b782d0958487a497d60bf18dee51e)
-rwxr-xr-x | ci/deploy.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh new file mode 100755 index 00000000..5f258c80 --- /dev/null +++ b/ci/deploy.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# +# (c) 2016 Enea Software AB +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +# +set -e + +cd $WORKSPACE +make submodules-init +make patches-import + +# source local environment variables +if ! [ -z $LAB_CONFIG_URL ]; then + local_env=${LAB_CONFIG_URL}/labs/${TARGET_LAB}/${TARGET_POD}/fuel/config/local_env + # try to fetch this file, but don't create it if it does not exist. + # We add "|| true" to ignore the curl error when the file does not exist + echo "curl -s -f -O $local_env || true" + curl -s -f -O $local_env || true + local_env=$(basename $local_env) + if [ -e $local_env ]; then + echo "-- Sourcing local environment file" + source $local_env + fi +fi + +cd upstream/fuel/ci +./deploy.sh $@ |