aboutsummaryrefslogtreecommitdiffstats
path: root/ci/deploy_ci.sh
blob: b1d45cde85095db1017f90ed8d9fb9bd6651bd29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/bash
##############################################################################
# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# 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
##############################################################################

# ROOT_BUILD_CAUSE DEPLOY_SCENARIO COMPASS_OS_VERSION got from CI

CI_DIR=$(cd $(dirname ${BASH_SOURCE:-$0});pwd)

if [[ $ROOT_BUILD_CAUSE == MANUALTRIGGER ]]; then
    # For manual ci trigger build, directly use the value pass from CI
    if [[ $COMPASS_OPENSTACK_VERSION == newton ]]; then
        export COMPASS_OS_VERSION=xenial
        export COMPASS_OPENSTACK_VERSION=newton_xenial
    else
        case $DEPLOY_SCENARIO in
        os-odl_l2-moon-ha)
            # os-odl_l2-moon-ha scenario supports xenial mitaka only
            export COMPASS_OS_VERSION=xenial
            export COMPASS_OPENSTACK_VERSION=mitaka_xenial
            ;;
        os-ocl-nofeature-ha)
            # os-ocl-nofeature-ha scenario supports liberty only
            export COMPASS_OS_VERSION=trusty
            export COMPASS_OPENSTACK_VERSION=liberty
            ;;
        *)
            # setup for testing mitaka by default
            export COMPASS_OS_VERSION=${COMPASS_OS_VERSION:-trusty}
            export COMPASS_OPENSTACK_VERSION=${COMPASS_OPENSTACK_VERSION:-mitaka}
            ;;
        esac
    fi

else
    # For daily build or verify build, adjust COMPASS_OS_VERSION and OPENSTACK_VERSION
    # value according to COMPASS_OS_VERSION and DEPLOY_SCENARIO pass from CI

    if [[ $COMPASS_OS_VERSION == centos7 ]]; then
        case $DEPLOY_SCENARIO in
        os-odl_l2-moon-ha)
            # os-odl_l2-moon-ha scenario supports xenial mitaka only
            export COMPASS_OS_VERSION=xenial
            export COMPASS_OPENSTACK_VERSION=mitaka_xenial
            ;;
        os-ocl-nofeature-ha)
            # os-ocl-nofeature-ha scenario supports liberty only
            export COMPASS_OS_VERSION=centos7
            export COMPASS_OPENSTACK_VERSION=liberty
            ;;
        *)
            # setup for testing mitaka by default
            export COMPASS_OS_VERSION=${COMPASS_OS_VERSION:-centos7}
            export COMPASS_OPENSTACK_VERSION=${COMPASS_OPENSTACK_VERSION:-mitaka}
            ;;
        esac

    else
        case $DEPLOY_SCENARIO in
        os-odl_l2-moon-ha)
            # os-odl_l2-moon-ha scenario supports xenial mitaka only
            export COMPASS_OS_VERSION=xenial
            export COMPASS_OPENSTACK_VERSION=mitaka_xenial
            ;;
        os-ocl-nofeature-ha)
            # os-ocl-nofeature-ha scenario supports liberty only
            export COMPASS_OS_VERSION=trusty
            export COMPASS_OPENSTACK_VERSION=liberty
            ;;
        *)
            # setup for testing mitaka by default
            export COMPASS_OS_VERSION=${COMPASS_OS_VERSION:-trusty}
            export COMPASS_OPENSTACK_VERSION=${COMPASS_OPENSTACK_VERSION:-mitaka}
            ;;
        esac
    fi
fi

# these variables used by compass
export OS_VERSION=$COMPASS_OS_VERSION
export OPENSTACK_VERSION=$COMPASS_OPENSTACK_VERSION

set +x
echo "#############################################"
echo 'DEPLOY_SCENARIO='$DEPLOY_SCENARIO
echo 'OS_VERSION='$OS_VERSION
echo 'OPENSTACK_VERSION='$OPENSTACK_VERSION
echo "#############################################"
set -x

$CI_DIR/../deploy.sh