1
0
mirror of https://github.com/timescale/timescaledb.git synced 2025-05-16 18:43:18 +08:00

Bump PG version used in CI to 14.5,13.8 and 12.12

This commit is contained in:
Sven Klemm 2022-08-11 10:10:58 +02:00 committed by Sven Klemm
parent 500c225999
commit 29937fd57c
7 changed files with 13 additions and 13 deletions

@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
pg: ["12.11", "13.7", "14.4"]
pg: ["12.12", "13.8", "14.5"]
os: [ubuntu-20.04]
env:
PG_SRC_DIR: pgbuild

@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
pg: ["12.11","13.7","14.4"]
pg: ["12.12","13.8","14.5"]
build_type: [ Debug ]
steps:

@ -44,7 +44,7 @@ jobs:
matrix:
# "os" has to be in the matrix due to a bug in "env": https://github.community/t/how-to-use-env-context/16975
os: ["ubuntu-20.04"]
pg: ["12.11","13.7","14.4"]
pg: ["12.12","13.8","14.5"]
steps:
- name: Install Linux Dependencies
run: |

@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-20.04"]
pg: ["14.4"]
pg: ["14.5"]
cc: ["gcc"]
build_type: ["Debug"]
fail-fast: false

@ -13,7 +13,7 @@ jobs:
runs-on: 'ubuntu-latest'
strategy:
matrix:
pg: ["12.11", "13.7", "14.4"]
pg: ["12.12", "13.8", "14.5"]
fail-fast: false
env:
PG_VERSION: ${{ matrix.pg }}
@ -44,7 +44,7 @@ jobs:
runs-on: 'ubuntu-latest'
strategy:
matrix:
pg: ["12.11", "13.7", "14.4"]
pg: ["12.12", "13.8", "14.5"]
fail-fast: false
env:
PG_VERSION: ${{ matrix.pg }}

@ -17,11 +17,11 @@ jobs:
build_type: [ Debug, Release ]
include:
- pg: 12
pkg_version: 12.11.1
pkg_version: 12.12.1
- pg: 13
pkg_version: 13.7.1
pkg_version: 13.8.1
- pg: 14
pkg_version: 14.4.1
pkg_version: 14.5.1
build_args: -DUSE_OPENSSL=OFF
env:
# PostgreSQL configuration

@ -22,11 +22,11 @@ import sys
event_type = sys.argv[1]
PG12_EARLIEST = "12.0"
PG12_LATEST = "12.11"
PG12_LATEST = "12.12"
PG13_EARLIEST = "13.2"
PG13_LATEST = "13.7"
PG13_LATEST = "13.8"
PG14_EARLIEST = "14.0"
PG14_LATEST = "14.4"
PG14_LATEST = "14.5"
m = {"include": [],}
@ -39,7 +39,7 @@ def build_debug_config(overrides):
# with gcc as clang is used to compile the llvm parts.
#
# Strictly speaking, WARNINGS_AS_ERRORS=ON is not needed here, but
# we add it as a precation. Intention is to have at least one
# we add it as a precaution. Intention is to have at least one
# release and one debug build with WARNINGS_AS_ERRORS=ON so that we
# capture warnings generated due to changes in the code base or the
# compiler.