Skip to content

Commit

Permalink
Merge pull request #654 from SUSE/sle16_testing_newpath
Browse files Browse the repository at this point in the history
Fixup TARGET=ibs-cr for the new SLE16 build setup
  • Loading branch information
dcermak authored Nov 13, 2024
2 parents 68ec5ea + add45bc commit b75ed39
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bci_tester/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@

ibs_cr_project: str = f"registry.suse.de/suse/{DISTNAME}/update/cr/totest"
if OS_VERSION.startswith("16"):
ibs_cr_project = f"registry.suse.de/suse/slfo/products/sles/{DISTNAME}"
ibs_cr_project = (
f"registry.suse.de/suse/slfo/products/sles/{DISTNAME}/test"
)
if OS_VERSION == "15.6-ai":
ibs_cr_project = "registry.suse.de/suse/sle-15-sp6/update/products/ai"

Expand Down Expand Up @@ -224,7 +226,7 @@ def _get_repository_name(image_type: _IMAGE_TYPE_T) -> str:
return ""
if OS_VERSION == "15.6-ai" and TARGET == "ibs-cr":
return "containerfile/"
if TARGET == "ibs-cr":
if not OS_VERSION.startswith("16") and TARGET == "ibs-cr":
return "images/"
if TARGET in ("factory-totest", "factory-arm-totest"):
return "containers/"
Expand Down

0 comments on commit b75ed39

Please sign in to comment.