mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Gitaly is using PgBouncer in its CI pipelines to verify that Praefect works alright with this proxy for Postgres. While it was initially using the PgBouncer binary directly, the project has since migrate to set up PgBouncer as a service via a separate image in 0e5953177 (ci: Tie in PgBouncer as a service, 2021-12-03). Since then the PgBouncer executable is not needed anymore in the image used by Gitaly. Stop installing PgBouncer and remove the architecture we have to build and install it.
13 lines
366 B
YAML
13 lines
366 B
YAML
# Used by Gitaly: https://gitlab.com/gitlab-org/gitaly/blob/master/.gitlab-ci.yml
|
|
gitaly:
|
|
needs: []
|
|
extends:
|
|
- .build_and_push
|
|
stage: gitaly
|
|
parallel:
|
|
matrix:
|
|
- OS: ['debian:bullseye']
|
|
RUBY: ['2.7', '3.0']
|
|
GOLANG: ['1.17', '1.18']
|
|
GIT: ['2.33']
|
|
POSTGRESQL: ['11', '12', '13'] # We only use the postgresql-client
|