summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build_test_env.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/build_test_env.sh b/tools/build_test_env.sh
index adab24d..4137111 100755
--- a/tools/build_test_env.sh
+++ b/tools/build_test_env.sh
@@ -28,8 +28,10 @@ try() { "$@" || fatal "'$@' failed"; }
REUSE_CONTAINER=
NOVENV=
API_VER=4
-GITLAB_IMAGE="${GITLAB_IMAGE:-gitlab/gitlab-ce}"
-GITLAB_TAG="${GITLAB_TAG:-latest}"
+DEFAULT_GITLAB_IMAGE=gitlab/gitlab-ce
+DEFAULT_GITLAB_TAG=13.3.0-ce.1
+GITLAB_IMAGE="${GITLAB_IMAGE:-$DEFAULT_GITLAB_IMAGE}"
+GITLAB_TAG="${GITLAB_TAG:-$DEFAULT_GITLAB_TAG}"
VENV_CMD="python3 -m venv"
while getopts :knp:a:i:t: opt "$@"; do
case $opt in