bodhi-pungi: convert image-build to use non branched
Need to move it to use non-branched location for f28. Added the if/else for future when we start using branched f29.
This commit is contained in:
parent
603e139fe6
commit
fa9c735e3d
1 changed files with 7 additions and 1 deletions
|
@ -205,7 +205,13 @@ image_build = {
|
|||
'disk_size': 6,
|
||||
'target': 'f[[ release.version_int ]]',
|
||||
'arches': ['x86_64', 'aarch64', 'ppc64le'],
|
||||
'install_tree_from': "https://kojipkgs{{ env_suffix }}.fedoraproject.org/compose/branched/latest-Fedora-[[ release.version_int ]]/compose/Everything/$arch/os/"
|
||||
'install_tree_from':
|
||||
# For f29 the compose location is under /compose/branched/
|
||||
[% if release.version_int == 29 %]
|
||||
"https://kojipkgs{{ env_suffix }}.fedoraproject.org/compose/branched/latest-Fedora-[[ release.version_int ]]/compose/Everything/$arch/os/",
|
||||
[% else %]
|
||||
"https://kojipkgs{{ env_suffix }}.fedoraproject.org/compose/[[ release.version_int ]]/latest-Fedora-[[ release.version_int ]]/compose/Everything/$arch/os/",
|
||||
[% endif %]
|
||||
'subvariant': 'AtomicHost',
|
||||
'failable': ['*'],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue