Skip to content

Commit

Permalink
PG17: Remove duplicated generated matrix
Browse files Browse the repository at this point in the history
For non pull-request we run CI over the EARLIEST and LATEST version but
PG17 was released last week then both versions are equal so no need to
add an extra item in the matrix.

https://github.com/timescale/timescaledb/actions/runs/11109257307/job/30864183372
  • Loading branch information
fabriziomello committed Oct 1, 2024
1 parent 58c454f commit 78df3ee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/gh_matrix_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,9 @@ def macos_config(overrides):
# add debug test for first supported PG16 version
m["include"].append(build_debug_config({"pg": PG16_EARLIEST}))

# add debug test for first supported PG16 version
m["include"].append(build_debug_config({"pg": PG17_EARLIEST}))
# add debug test for first supported PG17 version
if PG17_EARLIEST != PG17_LATEST:
m["include"].append(build_debug_config({"pg": PG17_EARLIEST}))

# add debug tests for timescaledb on latest postgres release in MacOS
m["include"].append(build_debug_config(macos_config({"pg": PG15_LATEST})))
Expand Down

0 comments on commit 78df3ee

Please sign in to comment.