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

View File

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

View File

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

View File

@ -44,7 +44,7 @@ jobs:
matrix: 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" 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"] os: ["ubuntu-20.04"]
pg: ["12.11","13.7","14.4"] pg: ["12.12","13.8","14.5"]
steps: steps:
- name: Install Linux Dependencies - name: Install Linux Dependencies
run: | run: |

View File

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

View File

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

View File

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

View File

@ -22,11 +22,11 @@ import sys
event_type = sys.argv[1] event_type = sys.argv[1]
PG12_EARLIEST = "12.0" PG12_EARLIEST = "12.0"
PG12_LATEST = "12.11" PG12_LATEST = "12.12"
PG13_EARLIEST = "13.2" PG13_EARLIEST = "13.2"
PG13_LATEST = "13.7" PG13_LATEST = "13.8"
PG14_EARLIEST = "14.0" PG14_EARLIEST = "14.0"
PG14_LATEST = "14.4" PG14_LATEST = "14.5"
m = {"include": [],} m = {"include": [],}
@ -39,7 +39,7 @@ def build_debug_config(overrides):
# with gcc as clang is used to compile the llvm parts. # with gcc as clang is used to compile the llvm parts.
# #
# Strictly speaking, WARNINGS_AS_ERRORS=ON is not needed here, but # 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 # 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 # capture warnings generated due to changes in the code base or the
# compiler. # compiler.