deploy.sh: read TARGET_LAB and TARGET_POD
[armband.git] / ci / deploy.sh
1 #!/bin/bash
2 #
3 # (c) 2016 Enea Software AB
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 set -e
11
12 cd $WORKSPACE
13 make submodules-init
14 make patches-import
15
16 # source local environment variables
17 if ! [ -z $LAB_CONFIG_URL ]; then
18     while getopts "l:p:" OPTION 2>/dev/null
19     do
20         case $OPTION in
21             l) TARGET_LAB=$OPTARG;;
22             p) TARGET_POD=$OPTARG;;
23         esac
24     done
25     local_env=${LAB_CONFIG_URL}/labs/${TARGET_LAB}/${TARGET_POD}/fuel/config/local_env
26     # try to fetch this file, but don't create it if it does not exist.
27     # We add "|| true" to ignore the curl error when the file does not exist
28     echo "curl -s -f -O $local_env || true"
29     curl -s -f -O $local_env || true
30     local_env=$(basename $local_env)
31     if [ -e $local_env ]; then
32         echo "-- Sourcing local environment file"
33         source $local_env
34     fi
35 fi
36
37 cd upstream/fuel/ci
38 ./deploy.sh $@