Merge "[ovn] Enable metadata agent"
[fuel.git] / ci / build.sh
1 #!/bin/bash -e
2 # shellcheck disable=SC1004,SC1090
3 ##############################################################################
4 # Copyright (c) 2018 Mirantis Inc., Enea AB and others.
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
11 ##############################################################################
12 # BEGIN of Exit handlers
13 #
14 do_exit () {
15     local RC=$?
16     if [ ${RC} -eq 0 ]; then
17         notify_n "[OK] MCP: Docker build finished succesfully!" 2
18     else
19         notify_n "[ERROR] MCP: Docker build threw a fatal error!"
20     fi
21 }
22 #
23 # End of Exit handlers
24 ##############################################################################
25
26 ##############################################################################
27 # BEGIN of variables to customize
28 #
29 CI_DEBUG=${CI_DEBUG:-0}; [[ "${CI_DEBUG}" =~ (false|0) ]] || set -x
30 MCP_REPO_ROOT_PATH=$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")
31 DEPLOY_DIR=$(cd "${MCP_REPO_ROOT_PATH}/mcp/scripts"; pwd)
32 DOCKER_DIR=$(cd "${MCP_REPO_ROOT_PATH}/docker"; pwd)
33 DOCKER_TAG=${1:-latest}
34 DOCKER_PUSH=${2---push}  # pass an empty second arg to disable push
35
36 source "${DEPLOY_DIR}/globals.sh"
37 source "${DEPLOY_DIR}/lib.sh"
38 source "${DEPLOY_DIR}/lib_jump_common.sh"
39
40 [ ! "${TERM:-unknown}" = 'unknown' ] || export TERM=vt220
41
42 #
43 # END of variables to customize
44 ##############################################################################
45
46 ##############################################################################
47 # BEGIN of main
48 #
49
50 # Enable the automatic exit trap
51 trap do_exit SIGINT SIGTERM EXIT
52
53 # Set no restrictive umask so that Jenkins can remove any residuals
54 umask 0000
55
56 # Clone git submodules and apply our patches
57 make -C "${MCP_REPO_ROOT_PATH}/mcp/patches" deepclean patches-import
58
59 pushd "${DEPLOY_DIR}" > /dev/null
60
61 # Install distro packages and pip-managed prerequisites
62 PYTHON_BIN_PATH="$(python -m site --user-base)/bin"
63 PATH="$PATH:$PYTHON_BIN_PATH"
64 notify "[NOTE] Installing required build-time distro and pip pkgs" 2
65 jumpserver_pkg_install 'build'
66 python -m pip install --upgrade pipenv --user
67 docker_install
68
69 popd > /dev/null
70 pushd "${DOCKER_DIR}" > /dev/null
71
72 python -m pipenv --two
73 env VIRTUALENV_ALWAYS_COPY=1 python -m pipenv install
74 env VIRTUALENV_ALWAYS_COPY=1 python -m pipenv install invoke
75 # shellcheck disable=SC2086
76 python -m pipenv run \
77   invoke build saltmaster-reclass \
78     --require 'salt salt-formulas opnfv reclass tini-saltmaster' \
79     --dist=ubuntu \
80     --dist-rel=xenial \
81     --formula-rev=nightly \
82     --opnfv-tag="${DOCKER_TAG}" \
83     --salt='stable 2017.7' \
84     ${DOCKER_PUSH}
85
86 popd > /dev/null
87
88 #
89 # END of main
90 ##############################################################################