Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c4c75e7e8..de8f216a3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -77,7 +77,9 @@ include:
- *cache_gems_configuration
- *cache_go_configuration
services:
- - postgres:${POSTGRES_VERSION}
+ - name: postgres:${POSTGRES_VERSION}
+ alias: postgres
+ command: ["postgres", "-c", "max_connections=500"]
variables: &postgres_variables
PGHOST: postgres
PGPORT: 5432
@@ -198,7 +200,9 @@ test:coverage:
test:pgbouncer:
<<: *test_definition
services:
- - postgres:${POSTGRES_VERSION}
+ - name: postgres:${POSTGRES_VERSION}
+ alias: postgres
+ command: ["postgres", "-c", "max_connections=500"]
- name: bitnami/pgbouncer:${PGBOUNCER_VERSION}
alias: pgbouncer
variables: