Skip to content

Commit

Permalink
Merge pull request #2059 from SUSE/postgres17
Browse files Browse the repository at this point in the history
Add PostgreSQL 17 containers
  • Loading branch information
dcermak authored Nov 26, 2024
2 parents 50990d4 + 0126875 commit 1e38964
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/bci_build/package/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
_POSTGRES_LICENSE = (Path(__file__).parent / "postgres" / "LICENSE").read_bytes()

# first list the SLE15 versions, then the TW specific versions
_POSTGRES_MAJOR_VERSIONS = [16, 15, 14] + [17, 13, 12]
_POSTGRES_MAJOR_VERSIONS = [17, 16, 15, 14] + [13, 12]
POSTGRES_CONTAINERS = [
ApplicationStackContainer(
name="postgres",
Expand Down Expand Up @@ -87,6 +87,10 @@
(16, variant)
for variant in (OsVersion.SP6, OsVersion.SP7, OsVersion.TUMBLEWEED)
]
+ [
(17, variant)
for variant in (OsVersion.SP6, OsVersion.SP7, OsVersion.TUMBLEWEED)
]
)
+ [(pg_ver, OsVersion.TUMBLEWEED) for pg_ver in (17, 14, 13, 12)]
+ [(pg_ver, OsVersion.TUMBLEWEED) for pg_ver in (14, 13, 12)]
]

0 comments on commit 1e38964

Please sign in to comment.