From 6e796878d7ac5a8117c3deca1979e2ffdad06fa9 Mon Sep 17 00:00:00 2001 From: Jan Nidzwetzki Date: Tue, 7 Nov 2023 00:31:59 +0100 Subject: [PATCH] Fix CI configuration for PG 16 In fbc1fbb64bed5e82bc3992dc4ac547bb172d46c3 PG 16 was enabled in the CI. However, PG16 was not added to PG_LATEST. Jobs that try to modify the build matrix (e.g., the Sanitizer) fail since they can not find an entry for PG 16. This patch fixes the build configuration. --- .github/ci_settings.py | 2 +- .github/workflows/update-test.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/ci_settings.py b/.github/ci_settings.py index 0643b5bf35f..4dfbf0c15ea 100644 --- a/.github/ci_settings.py +++ b/.github/ci_settings.py @@ -26,4 +26,4 @@ PG16_LATEST = "16.0" PG16_ABI_MIN = "16.0" -PG_LATEST = [PG13_LATEST, PG14_LATEST, PG15_LATEST] +PG_LATEST = [PG13_LATEST, PG14_LATEST, PG15_LATEST, PG16_LATEST] diff --git a/.github/workflows/update-test.yaml b/.github/workflows/update-test.yaml index 5f9835176e9..677582b6fc0 100644 --- a/.github/workflows/update-test.yaml +++ b/.github/workflows/update-test.yaml @@ -24,6 +24,9 @@ jobs: strategy: matrix: pg: ${{ fromJson(needs.config.outputs.pg_latest) }} + # Should be removed after the first version for PG 16 is released + exclude: + - pg: "16.0" fail-fast: false env: PG_VERSION: ${{ matrix.pg }} @@ -56,6 +59,9 @@ jobs: strategy: matrix: pg: ${{ fromJson(needs.config.outputs.pg_latest) }} + # Should be removed after the first version for PG 16 is released + exclude: + - pg: "16.0" fail-fast: false env: PG_VERSION: ${{ matrix.pg }}