Skip to content

Commit

Permalink
enable build recipes for 389-ds, nginx, and postgresql16 for SLCI
Browse files Browse the repository at this point in the history
  • Loading branch information
Priyankasaggu11929 authored and dcermak committed Apr 11, 2024
1 parent 8ae977c commit 5e157c2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/bci_build/package/appcontainers.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
CMD /usr/lib/dirsrv/dscontainer -H
""",
)
for os_version in ALL_NONBASE_OS_VERSIONS
for os_version in ALL_BASE_OS_VERSIONS
]

_MARIADB_ENTRYPOINT = (Path(__file__).parent / "mariadb" / "entrypoint.sh").read_bytes()
Expand Down Expand Up @@ -329,7 +329,12 @@
[(15, variant) for variant in (OsVersion.SP5, OsVersion.TUMBLEWEED)]
+ [
(16, variant)
for variant in (OsVersion.SP5, OsVersion.SP6, OsVersion.TUMBLEWEED)
for variant in (
OsVersion.SLCC,
OsVersion.SP5,
OsVersion.SP6,
OsVersion.TUMBLEWEED,
)
]
)
+ [(pg_ver, OsVersion.TUMBLEWEED) for pg_ver in (14, 13, 12)]
Expand Down Expand Up @@ -516,7 +521,7 @@ def _get_nginx_kwargs(os_version: OsVersion):
custom_description="NGINX open source all-in-one load balancer, content cache and web server {based_on_container}.",
**_get_nginx_kwargs(os_version),
)
for os_version in ALL_NONBASE_OS_VERSIONS
for os_version in ALL_BASE_OS_VERSIONS
]

GIT_CONTAINERS = [
Expand Down

0 comments on commit 5e157c2

Please sign in to comment.