UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Update GitLab to the 17.3.0 Minor Feature Release

Merged Andrew Patterson requested to merge release-gitlab-17-3-0 into development
All threads resolved!
Files
20
+ 36
0
#!/bin/bash
# NOTICE: This script requires `docker`.
set -euxo pipefail
REGISTRY=${1:-}
REPOSITORY=${2:-"$(basename "$(builtin cd "$(dirname "$0")/.."; pwd)")"}
TAG=${3:-17.3.0}
DOCKER_BUILD="${DOCKER_BUILD:-docker build}"
DOCKER_OPTS=${DOCKER_OPTS:-""}
imageName() {
local name="${REGISTRY}/${REPOSITORY}:${TAG}"
echo "${name#/}"
}
buildImage() {
local image="${1}"
local context="${image%*-ee}"
{
# shellcheck disable=SC2086
${DOCKER_BUILD} \
-t "$(imageName)" . \
${DOCKER_OPTS:-} | tee "${context}.out"
} || {
echo "${context}" >> failed.log
}
}
# Cleanup log outputs from previous build
rm -f -- *.out failed.log
buildImage "${REPOSITORY}"
Loading