2019-01-29 14:56:01 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
my $version = get_var("VERSION");
|
2022-04-26 17:41:23 +00:00
|
|
|
my $rawrel = get_var("RAWREL");
|
|
|
|
my $branch;
|
|
|
|
my $repoks;
|
|
|
|
my $releasever;
|
|
|
|
if ($version eq $rawrel) {
|
|
|
|
$branch = "main";
|
|
|
|
$repoks = "fedora-repo-rawhide.ks";
|
|
|
|
$releasever = "Rawhide";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$branch = "f${version}";
|
|
|
|
$repoks = "fedora-repo-not-rawhide.ks";
|
|
|
|
$releasever = $version;
|
|
|
|
}
|
2019-01-29 14:56:01 +00:00
|
|
|
my $advortask = get_var("ADVISORY_OR_TASK");
|
|
|
|
my $arch = get_var("ARCH");
|
|
|
|
my $subv = get_var("SUBVARIANT");
|
|
|
|
my $lcsubv = lc($subv);
|
2020-05-06 04:12:12 +00:00
|
|
|
if (get_var("NUMDISKS") > 2) {
|
|
|
|
# put /var/lib/mock on the third disk, so we don't run out of
|
|
|
|
# space on the main disk. The second disk will have already
|
|
|
|
# been claimed for the update repo.
|
|
|
|
assert_script_run "echo 'type=83' | sfdisk /dev/vdc";
|
|
|
|
assert_script_run "mkfs.ext4 /dev/vdc1";
|
|
|
|
assert_script_run "echo '/dev/vdc1 /var/lib/mock ext4 defaults 1 2' >> /etc/fstab";
|
|
|
|
assert_script_run "mkdir -p /var/lib/mock";
|
|
|
|
assert_script_run "mount /var/lib/mock";
|
|
|
|
}
|
2019-01-29 14:56:01 +00:00
|
|
|
# install the tools we need
|
|
|
|
assert_script_run "dnf -y install mock git pykickstart tar", 120;
|
2019-09-23 23:00:08 +00:00
|
|
|
# base mock config on original
|
|
|
|
assert_script_run "echo \"include('/etc/mock/fedora-${version}-${arch}.cfg')\" > /etc/mock/openqa.cfg";
|
2020-09-15 21:44:34 +00:00
|
|
|
# make the side and workarounds repos and the serial device available inside the mock root
|
2019-09-23 23:00:08 +00:00
|
|
|
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_enable\'] = True" >> /etc/mock/openqa.cfg';
|
2019-01-29 14:56:01 +00:00
|
|
|
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_opts\'][\'dirs\'].append((\'/opt/update_repo\', \'/opt/update_repo\'))" >> /etc/mock/openqa.cfg';
|
2020-09-15 21:44:34 +00:00
|
|
|
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_opts\'][\'dirs\'].append((\'/opt/workarounds_repo\', \'/opt/workarounds_repo\'))" >> /etc/mock/openqa.cfg';
|
2019-01-29 14:56:01 +00:00
|
|
|
assert_script_run 'echo "config_opts[\'plugin_conf\'][\'bind_mount_opts\'][\'dirs\'].append((\'/dev/' . $serialdev . '\', \'/dev/' . $serialdev . '\'))" >> /etc/mock/openqa.cfg';
|
2020-09-15 21:25:05 +00:00
|
|
|
# add the side repo and workarounds to the config
|
|
|
|
assert_script_run 'printf "config_opts[\'dnf.conf\'] += \"\"\"\n[advisory]\nname=Advisory repo\nbaseurl=file:///opt/update_repo\nenabled=1\nmetadata_expire=3600\ngpgcheck=0\n\n[workarounds]\nname=Workarounds repo\nbaseurl=file:///opt/workarounds_repo\nenabled=1\nmetadata_expire=3600\ngpgcheck=0\n\"\"\"" >> /etc/mock/openqa.cfg';
|
2019-08-15 20:36:25 +00:00
|
|
|
# replace metalink with mirrorlist so we don't get slow mirrors
|
2019-08-20 21:16:23 +00:00
|
|
|
repos_mirrorlist("/etc/mock/openqa.cfg");
|
2019-01-29 14:56:01 +00:00
|
|
|
# upload the config so we can check it's OK
|
|
|
|
upload_logs "/etc/mock/openqa.cfg";
|
|
|
|
# now check out the kickstarts
|
|
|
|
assert_script_run 'git clone https://pagure.io/fedora-kickstarts.git';
|
|
|
|
assert_script_run 'cd fedora-kickstarts';
|
2022-04-26 17:41:23 +00:00
|
|
|
assert_script_run "git checkout ${branch}";
|
|
|
|
# now add the side repo to the appropriate repo ks
|
|
|
|
assert_script_run 'echo "repo --name=advisory --baseurl=file:///opt/update_repo" >> ' . $repoks;
|
2020-09-15 21:21:07 +00:00
|
|
|
# and the workarounds repo
|
2022-04-26 17:41:23 +00:00
|
|
|
assert_script_run 'echo "repo --name=workarounds --baseurl=file:///opt/workarounds_repo" >> ' . $repoks;
|
2019-01-29 14:56:01 +00:00
|
|
|
# now flatten the kickstart
|
|
|
|
assert_script_run "ksflatten -c fedora-live-${lcsubv}.ks -o openqa.ks";
|
|
|
|
# upload the kickstart so we can check it
|
|
|
|
upload_logs "openqa.ks";
|
|
|
|
# now install the tools into the mock
|
2022-05-06 21:08:04 +00:00
|
|
|
assert_script_run "mock -r openqa --isolation=simple --install bash coreutils glibc-all-langpacks lorax-lmc-novirt selinux-policy-targeted shadow-utils util-linux", 600;
|
2019-01-29 14:56:01 +00:00
|
|
|
# now make the image build directory inside the mock root and put the kickstart there
|
2021-03-10 00:02:06 +00:00
|
|
|
assert_script_run 'mock -r openqa --isolation=simple --chroot "mkdir -p /chroot_tmpdir"';
|
|
|
|
assert_script_run "mock -r openqa --isolation=simple --copyin openqa.ks /chroot_tmpdir";
|
2019-01-29 14:56:01 +00:00
|
|
|
# PULL SOME LEVERS! PULL SOME LEVERS!
|
2022-05-02 17:37:00 +00:00
|
|
|
assert_script_run "mock -r openqa --enable-network --isolation=simple --chroot \"/sbin/livemedia-creator --ks /chroot_tmpdir/openqa.ks --logfile /chroot_tmpdir/lmc-logs/livemedia-out.log --no-virt --resultdir /chroot_tmpdir/lmc --project Fedora-${subv}-Live --make-iso --volid FWL-${advortask} --iso-only --iso-name Fedora-${subv}-Live-${arch}-${advortask}.iso --releasever ${releasever} --macboot\"", 4500;
|
2021-03-10 00:02:06 +00:00
|
|
|
unless (script_run "mock -r openqa --isolation=simple --copyout /chroot_tmpdir/lmc-logs/livemedia-out.log .") {
|
2019-01-29 14:56:01 +00:00
|
|
|
upload_logs "livemedia-out.log";
|
|
|
|
}
|
2021-03-10 00:02:06 +00:00
|
|
|
unless (script_run "mock -r openqa --isolation=simple --copyout /chroot_tmpdir/lmc-logs/anaconda/ anaconda") {
|
2019-01-29 14:56:01 +00:00
|
|
|
assert_script_run "tar cvzf anaconda.tar.gz anaconda/";
|
|
|
|
upload_logs "anaconda.tar.gz";
|
|
|
|
}
|
2021-03-10 00:02:06 +00:00
|
|
|
assert_script_run "mock -r openqa --isolation=simple --copyout /chroot_tmpdir/lmc/Fedora-${subv}-Live-${arch}-${advortask}.iso .";
|
2019-01-29 14:56:01 +00:00
|
|
|
upload_asset "./Fedora-${subv}-Live-${arch}-${advortask}.iso";
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|