1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-21 14:37:23 +00:00

_ostree_build: disable archive repo on 41 till it works

See https://pagure.io/releng/archive-repo-manager/pull-request/24

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-08-16 08:25:16 -04:00
parent 3211f29e58
commit d4d9adc463

View File

@ -59,6 +59,9 @@ sub run {
# change the ref name to a custom one (so we can test rebasing to # change the ref name to a custom one (so we can test rebasing to
# the 'normal' ref later) # the 'normal' ref later)
assert_script_run 'sed -i -e "s,ref: fedora/,ref: fedora-openqa/,g" *.yaml'; assert_script_run 'sed -i -e "s,ref: fedora/,ref: fedora-openqa/,g" *.yaml';
# FIXME disable archive repo on F41 until it actually exists
# https://pagure.io/releng/archive-repo-manager/pull-request/24
assert_script_run 'sed -i -e "/archive/d" common.yaml' if ($version eq "41");
assert_script_run 'popd'; assert_script_run 'popd';
# now make the ostree repo # now make the ostree repo
assert_script_run "mkdir -p /var/tmp/ostree"; assert_script_run "mkdir -p /var/tmp/ostree";