2018-08-31 20:34:12 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
my $version = get_var("VERSION");
|
2020-05-07 22:42:08 +00:00
|
|
|
my $currrel = get_var("CURRREL");
|
2022-04-26 17:41:23 +00:00
|
|
|
my $rawrel = get_var("RAWREL");
|
|
|
|
my $repo = $version eq $rawrel ? "fedora-rawhide.repo" : "fedora.repo";
|
2019-01-29 09:06:16 +00:00
|
|
|
my $advortask = get_var("ADVISORY_OR_TASK");
|
2018-08-31 20:34:12 +00:00
|
|
|
my $arch = get_var("ARCH");
|
2019-12-20 17:19:13 +00:00
|
|
|
assert_script_run "dnf -y install lorax", 90;
|
2018-08-31 20:34:12 +00:00
|
|
|
# this 'temporary file cleanup' thing can actually wipe bits of
|
|
|
|
# the lorax install root while lorax is still running...
|
|
|
|
assert_script_run "systemctl stop systemd-tmpfiles-clean.timer";
|
|
|
|
assert_script_run "mkdir -p /root/imgbuild";
|
|
|
|
assert_script_run "pushd /root/imgbuild";
|
|
|
|
assert_script_run "setenforce Permissive";
|
2021-02-09 19:19:43 +00:00
|
|
|
# Fedora pungi config always sets rootfs size to 3GiB since F32
|
2022-04-26 17:41:23 +00:00
|
|
|
my $cmd = "lorax -p Fedora -v ${version} -r ${version} --repo=/etc/yum.repos.d/${repo} --rootfs-size 3";
|
2020-05-07 22:42:08 +00:00
|
|
|
unless ($version > $currrel) {
|
2018-08-31 20:34:12 +00:00
|
|
|
$cmd .= " --isfinal --repo=/etc/yum.repos.d/fedora-updates.repo";
|
|
|
|
}
|
2020-09-15 21:21:07 +00:00
|
|
|
$cmd .= " --repo=/etc/yum.repos.d/advisory.repo --repo=/etc/yum.repos.d/workarounds.repo ./results";
|
2022-05-06 21:05:41 +00:00
|
|
|
assert_script_run $cmd, 2400;
|
2020-09-15 21:54:44 +00:00
|
|
|
# good to have the log around for checks
|
|
|
|
upload_logs "pylorax.log", failok=>1;
|
2019-01-29 09:06:16 +00:00
|
|
|
assert_script_run "mv results/images/boot.iso ./${advortask}-netinst-${arch}.iso";
|
|
|
|
upload_asset "./${advortask}-netinst-x86_64.iso";
|
2018-08-31 20:34:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|