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}
36 SALT_VERSION='stable 2017.7'
38 source "${DEPLOY_DIR}/globals.sh"
39 source "${DEPLOY_DIR}/lib.sh"
40 source "${DEPLOY_DIR}/lib_jump_common.sh"
42 [ ! "${TERM:-unknown}" = 'unknown' ] || export TERM=vt220
43 [ "${CACHE_INVALIDATE}" = 0 ] || CACHE_INVALIDATE=$(date +%s)
46 # END of variables to customize
47 ##############################################################################
49 ##############################################################################
53 # Enable the automatic exit trap
54 trap do_exit SIGINT SIGTERM EXIT
56 # Set no restrictive umask so that Jenkins can remove any residuals
59 # Clone git submodules and apply our patches
60 make -C "${MCP_REPO_ROOT_PATH}/mcp/patches" deepclean patches-import
62 pushd "${DEPLOY_DIR}" > /dev/null
64 # Install distro packages and pip-managed prerequisites
65 PYTHON_BIN_PATH="$(python -m site --user-base)/bin"
66 PATH="$PATH:$PYTHON_BIN_PATH"
67 notify "[NOTE] Installing required build-time distro and pip pkgs" 2
68 jumpserver_pkg_install 'build'
69 python -m pip install --upgrade pipenv --user
73 pushd "${DOCKER_DIR}" > /dev/null
75 env PIPENV_HIDE_EMOJIS=1 VIRTUALENV_ALWAYS_COPY=1 python -m pipenv --two install
76 env PIPENV_HIDE_EMOJIS=1 VIRTUALENV_ALWAYS_COPY=1 python -m pipenv install invoke
77 # shellcheck disable=SC2086
78 env PIPENV_HIDE_EMOJIS=1 python -m pipenv run \
79 invoke build saltmaster-reclass \
80 --require 'salt salt-formulas opnfv reclass tini-saltmaster' \
83 --formula-rev=nightly \
84 --opnfv-tag="${DOCKER_TAG}" \
85 --salt="${SALT_VERSION}" \
87 CACHE_INVALIDATE=\"${CACHE_INVALIDATE}\"" \
90 env PIPENV_HIDE_EMOJIS=1 python -m pipenv run \
91 invoke build saltminion-maas \
95 --opnfv-tag="${DOCKER_TAG}" \
96 --salt="${SALT_VERSION}" \
103 ##############################################################################