Skip to content

Commit

Permalink
Bump PG version used in CI to 12.14, 13.10, 14.7 and 15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
svenklemm committed Feb 12, 2023
1 parent ef25fb9 commit 9ec11d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/ci_settings.py
Expand Up @@ -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]
2 changes: 1 addition & 1 deletion .github/workflows/update-test.yaml
Expand Up @@ -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()
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/windows-build-and-test.yaml
Expand Up @@ -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
Expand Down

0 comments on commit 9ec11d8

Please sign in to comment.