From d122a251e4aa501516080a0ad3255fb3670208e6 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 18 Sep 2023 21:03:35 +0100 Subject: [PATCH] Issue #3387732 by andypost: Add postgresql 15/16 to testing matrix --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a146d82150a4..3c34b16f701f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -175,6 +175,18 @@ stages: _TARGET_PHP: "8.2" _TARGET_DB: "pgsql-14.1" +'PHP 8.2 PostgreSQL 15': + <<: [ *default-stage, *run-on-commit ] + variables: + _TARGET_PHP: "8.2" + _TARGET_DB: "pgsql-15" + +'PHP 8.2 PostgreSQL 16': + <<: [ *default-stage, *run-on-commit ] + variables: + _TARGET_PHP: "8.2" + _TARGET_DB: "pgsql-16" + # 'PHP 8.2 SQLite 3.34.0': # <<: [ *default-stage, *run-on-commit ] # variables: -- GitLab