1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-08-18 21:35:45 +00:00

ostree_build: fix for yet another rename in workstation-ostree-config

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2025-02-13 23:56:54 -08:00
parent 644e6281e4
commit bc7bf1af2d

View File

@ -73,7 +73,9 @@ sub run {
# disables updating the ref with the new commit, and we *do* want # disables updating the ref with the new commit, and we *do* want
# to do that. pungi updates the ref itself, I don't want to copy # to do that. pungi updates the ref itself, I don't want to copy
# all that work in here # all that work in here
assert_script_run "rpm-ostree compose tree --unified-core --repo=/var/tmp/ostree/repo/ --add-metadata-string=version=${advortask} --force-nocache /workstation-ostree-config/fedora-$lcsubv.yaml |& ts '" . '[%Y-%m-%d %H:%M:%S]' . "' | tee /tmp/ostree.log", 4500; my $yaml = "$lcsubv-ostree.yaml";
$yaml = "fedora-$lcsubv.yaml" if ($version < 41);
assert_script_run "rpm-ostree compose tree --unified-core --repo=/var/tmp/ostree/repo/ --add-metadata-string=version=${advortask} --force-nocache /workstation-ostree-config/$yaml |& ts '" . '[%Y-%m-%d %H:%M:%S]' . "' | tee /tmp/ostree.log", 4500;
assert_script_run "set +o pipefail"; assert_script_run "set +o pipefail";
upload_logs "/tmp/ostree.log"; upload_logs "/tmp/ostree.log";
# check out the ostree installer lorax templates # check out the ostree installer lorax templates