Skip to content

Commit

Permalink
Fix CI configuration for PG 16
Browse files Browse the repository at this point in the history
In fbc1fbb 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.
  • Loading branch information
jnidzwetzki committed Nov 7, 2023
1 parent 56a708b commit 6e79687
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/ci_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
6 changes: 6 additions & 0 deletions .github/workflows/update-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 6e79687

Please sign in to comment.