From 7e01b44038c0e7efce3489de21a146f1c9224bf4 Mon Sep 17 00:00:00 2001 From: eaydingol Date: Tue, 3 Mar 2026 15:25:23 +0300 Subject: [PATCH 1/2] Add CITUS_UPGRADE_VERSIONS_18 for PG18 exttester image --- circleci/images/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circleci/images/Makefile b/circleci/images/Makefile index 06acefe..ebf1505 100644 --- a/circleci/images/Makefile +++ b/circleci/images/Makefile @@ -22,6 +22,8 @@ CITUS_UPGRADE_PG_VERSIONS=$(shell head -n2 PG_VERSIONS|cut -c 6-|tr '\n' ' ') CITUS_UPGRADE_VERSIONS_16=v12.1.10 # Latest minor version of Citus 13 CITUS_UPGRADE_VERSIONS_17=v13.2.0 +# Latest minor version of Citus 14 +CITUS_UPGRADE_VERSIONS_18=v14.0.0 # Function to get Citus versions for a specific PG major version get_citus_versions = $(CITUS_UPGRADE_VERSIONS_$(1)) From a5f29c182eb0c4791fa898ab2710bca08476a9e7 Mon Sep 17 00:00:00 2001 From: eaydingol Date: Tue, 3 Mar 2026 19:42:19 +0300 Subject: [PATCH 2/2] add pg18 to citus upgrade tests --- circleci/images/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circleci/images/Makefile b/circleci/images/Makefile index ebf1505..93e0440 100644 --- a/circleci/images/Makefile +++ b/circleci/images/Makefile @@ -17,7 +17,7 @@ PG_UPGRADE_TESTER_VERSION=$(shell echo ${PG_VERSIONS}|tr ' ' '-'|sed 's/~//g') STYLE_CHECKER_TOOLS_VERSION=0.8.33 # Upgrade tests for the PG major versions from PG_VERSIONS file -CITUS_UPGRADE_PG_VERSIONS=$(shell head -n2 PG_VERSIONS|cut -c 6-|tr '\n' ' ') +CITUS_UPGRADE_PG_VERSIONS=$(shell head PG_VERSIONS|cut -c 6-|tr '\n' ' ') # 12.1.10 is the latest release of Citus 12 when the test is expanded to cover Citus 12 CITUS_UPGRADE_VERSIONS_16=v12.1.10 # Latest minor version of Citus 13