gitlab-build-images/.gitlab/ci/gitaly.images.yml
Stan Hu 5b160738a9
Use explicit PostgreSQL version for Gitaly images
Currently the Gitaly images install the PostgreSQL version available
to the Debian repository. The support scripts in Praefect currently
depend on specific versions of `psql`, so let's be explicit about the
versions used in the image and install PostgreSQL from the PGDG
repository.
2022-02-10 09:14:02 -08:00

21 lines
498 B
YAML

# Used by Gitaly: https://gitlab.com/gitlab-org/gitaly/blob/master/.gitlab-ci.yml
.gitaly-matrix:
parallel:
matrix:
- DEBIAN: ['bullseye']
RUBY: ['2.7', '3.0']
GOLANG: ['1.16', '1.17']
GIT: ['2.31', '2.33']
PGBOUNCER: ['1.14', '']
POSTGRESQL: ['11', '12'] # We only use the postgresql-client
gitaly:test:
needs: []
extends:
- .gitaly-matrix
- .test_custom
gitaly push:
extends:
- .gitaly-matrix
- .build_and_deploy_custom