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 committed Mar 8, 2024
1 parent 98f191c commit 30a03a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 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 @@ -306,7 +306,7 @@
[(15, variant) for variant in (OsVersion.SP5, OsVersion.TUMBLEWEED)]
+ [
(16, variant)
for variant in (OsVersion.SP5, OsVersion.SP6, OsVersion.TUMBLEWEED)
for variant in (OsVersion.SP5, OsVersion.SP6, OsVersion.TUMBLEWEED, OsVersion.SLCI)
]
)
+ [(pg_ver, OsVersion.TUMBLEWEED) for pg_ver in (14, 13, 12)]
Expand Down Expand Up @@ -493,7 +493,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 30a03a6

Please sign in to comment.