[docker] Relax verify check for docker pull
[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
39 [ ! "${TERM:-unknown}" = 'unknown' ] || export TERM=vt220
40
41 #
42 # END of variables to customize
43 ##############################################################################
44
45 ##############################################################################
46 # BEGIN of main
47 #
48
49 # Enable the automatic exit trap
50 trap do_exit SIGINT SIGTERM EXIT
51
52 # Set no restrictive umask so that Jenkins can remove any residuals
53 umask 0000
54
55 # Clone git submodules and apply our patches
56 make -C "${MCP_REPO_ROOT_PATH}/mcp/patches" deepclean patches-import
57
58 pushd "${DEPLOY_DIR}" > /dev/null
59
60 # Install distro packages and pip-managed prerequisites
61 PYTHON_BIN_PATH="$(python -m site --user-base)/bin"
62 PATH="$PATH:$PYTHON_BIN_PATH"
63 notify "[NOTE] Installing required build-time distro and pip pkgs" 2
64 jumpserver_pkg_install 'build'
65 pip install pipenv --user
66 docker_install
67
68 popd > /dev/null
69 pushd "${DOCKER_DIR}" > /dev/null
70
71 pipenv --two
72 pipenv install
73 pipenv install invoke
74 # shellcheck disable=SC2086
75 pipenv run \
76   invoke build saltmaster-reclass \
77     --require 'salt salt-formulas opnfv reclass tini-saltmaster' \
78     --dist=ubuntu \
79     --dist-rel=xenial \
80     --formula-rev=nightly \
81     --opnfv-tag="${DOCKER_TAG}" \
82     --salt='stable 2017.7' \
83     ${DOCKER_PUSH}
84
85 popd > /dev/null
86
87 #
88 # END of main
89 ##############################################################################