Bump PG version used in CI to 12.14, 13.10, 14.7 and 15.2

This commit is contained in:
Sven Klemm 2023-02-10 12:04:32 +01:00 committed by Sven Klemm
parent ef25fb9ec7
commit 9ec11d8af6
3 changed files with 9 additions and 7 deletions

View File

@ -11,19 +11,19 @@
# ABI_MIN is the minimum postgres version required when the extension was build against LATEST
PG12_EARLIEST = "12.0"
PG12_LATEST = "12.13"
PG12_LATEST = "12.14"
PG12_ABI_MIN = "12.8"
PG13_EARLIEST = "13.2"
PG13_LATEST = "13.9"
PG13_LATEST = "13.10"
PG13_ABI_MIN = "13.5"
PG14_EARLIEST = "14.0"
PG14_LATEST = "14.6"
PG14_LATEST = "14.7"
PG14_ABI_MIN = "14.0"
PG15_EARLIEST = "15.0"
PG15_LATEST = "15.1"
PG15_LATEST = "15.2"
PG15_ABI_MIN = "15.0"
PG_LATEST = [PG12_LATEST, PG13_LATEST, PG14_LATEST, PG15_LATEST]

View File

@ -79,7 +79,7 @@ jobs:
export UPDATE_FROM_TAG
# We need to use same libssl version used in the latest official TimescaleDB container images.
# So we will use the fixed alpine version, this will guarantee that libssl version wont change.
PG_IMAGE_TAG="${PG_VERSION}-alpine3.16" scripts/test_downgrade_from_tag.sh
PG_IMAGE_TAG="${PG_VERSION}-alpine3.17" scripts/test_downgrade_from_tag.sh
- name: Downgrade diff
if: failure()

View File

@ -59,10 +59,12 @@ jobs:
pg_config: ["-cfsync=off -cstatement_timeout=60s"]
include:
- pg: 12
pkg_version: ${{ fromJson(needs.config.outputs.pg12_latest) }}.1
# pkg_version: ${{ fromJson(needs.config.outputs.pg12_latest) }}.1
pkg_version: 12.13.1 # hardcoded due to issues with PG12.14 on chocolatey
tsl_skips_version: dist_partial_agg-12
- pg: 13
pkg_version: ${{ fromJson(needs.config.outputs.pg13_latest) }}.1
# pkg_version: ${{ fromJson(needs.config.outputs.pg13_latest) }}.1
pkg_version: 13.9.1 # hardcoded due to issues with PG13.10 on chocolatey
tsl_skips_version: dist_grant-13 dist_partial_agg-13
- pg: 14
pkg_version: 14.5.1 # hardcoded due to issues with PG14.6 on chocolatey