File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "regexManagers" : [
3
+ {
4
+ "fileMatch" : [" ^tools/build_test_env.sh$" ],
5
+ "matchStrings" : [" DEFAULT_GITLAB_TAG=(?<currentValue>.*?)\n " ],
6
+ "depNameTemplate" : " gitlab/gitlab-ce" ,
7
+ "datasourceTemplate" : " docker" ,
8
+ "versioningTemplate" : " loose"
9
+ }
10
+ ]
11
+ }
Original file line number Diff line number Diff line change @@ -28,8 +28,10 @@ try() { "$@" || fatal "'$@' failed"; }
28
28
REUSE_CONTAINER=
29
29
NOVENV=
30
30
API_VER=4
31
- GITLAB_IMAGE=" ${GITLAB_IMAGE:- gitlab/ gitlab-ce} "
32
- GITLAB_TAG=" ${GITLAB_TAG:- latest} "
31
+ DEFAULT_GITLAB_IMAGE=gitlab/gitlab-ce
32
+ DEFAULT_GITLAB_TAG=13.3.0-ce.1
33
+ GITLAB_IMAGE=" ${GITLAB_IMAGE:- $DEFAULT_GITLAB_IMAGE } "
34
+ GITLAB_TAG=" ${GITLAB_TAG:- $DEFAULT_GITLAB_TAG } "
33
35
VENV_CMD=" python3 -m venv"
34
36
while getopts :knp:a:i:t: opt " $@ " ; do
35
37
case $opt in
You can’t perform that action at this time.
0 commit comments