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 ##############################################################################
11 ##############################################################################
12 # BEGIN of Exit handlers
16 if [ ${RC} -eq 0 ]; then
17 notify_n "[OK] MCP: Docker build finished succesfully!" 2
19 notify_n "[ERROR] MCP: Docker build threw a fatal error!"
23 # End of Exit handlers
24 ##############################################################################
26 ##############################################################################
27 # BEGIN of variables to customize
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 CACHE_INVALIDATE=${CACHE_INVALIDATE:-0}
37 source "${DEPLOY_DIR}/globals.sh"
38 source "${DEPLOY_DIR}/lib.sh"
39 source "${DEPLOY_DIR}/lib_jump_common.sh"
41 [ ! "${TERM:-unknown}" = 'unknown' ] || export TERM=vt220
42 [ "${CACHE_INVALIDATE}" = 0 ] || CACHE_INVALIDATE=$(date +%s)
45 # END of variables to customize
46 ##############################################################################
48 ##############################################################################
52 # Enable the automatic exit trap
53 trap do_exit SIGINT SIGTERM EXIT
55 # Set no restrictive umask so that Jenkins can remove any residuals
58 # Clone git submodules and apply our patches
59 make -C "${MCP_REPO_ROOT_PATH}/mcp/patches" deepclean patches-import
61 pushd "${DEPLOY_DIR}" > /dev/null
63 # Install distro packages and pip-managed prerequisites
64 PYTHON_BIN_PATH="$(python -m site --user-base)/bin"
65 PATH="$PATH:$PYTHON_BIN_PATH"
66 notify "[NOTE] Installing required build-time distro and pip pkgs" 2
67 jumpserver_pkg_install 'build'
68 python -m pip install --upgrade pipenv --user
72 pushd "${DOCKER_DIR}" > /dev/null
74 env PIPENV_HIDE_EMOJIS=1 VIRTUALENV_ALWAYS_COPY=1 python -m pipenv --two install
75 env PIPENV_HIDE_EMOJIS=1 VIRTUALENV_ALWAYS_COPY=1 python -m pipenv install invoke
76 # shellcheck disable=SC2086
77 env PIPENV_HIDE_EMOJIS=1 python -m pipenv run \
78 invoke build saltmaster-reclass \
79 --require 'salt salt-formulas opnfv reclass tini-saltmaster' \
82 --formula-rev=nightly \
83 --opnfv-tag="${DOCKER_TAG}" \
84 --salt='stable 2017.7' \
86 CACHE_INVALIDATE=\"${CACHE_INVALIDATE}\"" \
93 ##############################################################################