mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-24 06:43:08 +00:00
test test: fiddle with excludepkgs
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
208fe91f9d
commit
dc522e3f4a
@ -720,6 +720,11 @@ sub _repo_setup_updates {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
setup_repos(configs => 1);
|
setup_repos(configs => 1);
|
||||||
|
# block the update packages in main repo dnf and mock configs
|
||||||
|
assert_script_run 'sed -i -e "s,name=,excludepkgs=`sed -e s/ /,/g /mnt/updatepkgnames.txt`\nname=,g" /etc/mock/templates/fedora*';
|
||||||
|
assert_script_run 'sed -i -e "s,name=,excludepkgs=`sed -e s/ /,/g /mnt/updatepkgnames.txt`\nname=,g" /etc/yum.repos.d/fedora*.repo';
|
||||||
|
upload_logs "/etc/mock/templates/fedora-rawhide.tpl";
|
||||||
|
upload_logs "/etc/yum.repos.d/fedora.repo";
|
||||||
# run an update now, except for upgrade or install tests,
|
# run an update now, except for upgrade or install tests,
|
||||||
# where the updated packages should have been installed
|
# where the updated packages should have been installed
|
||||||
# already and we want to fail if they weren't, or CANNED
|
# already and we want to fail if they weren't, or CANNED
|
||||||
|
@ -69,6 +69,8 @@ sub run {
|
|||||||
assert_script_run 'git clone https://pagure.io/fedora-kickstarts.git';
|
assert_script_run 'git clone https://pagure.io/fedora-kickstarts.git';
|
||||||
assert_script_run 'cd fedora-kickstarts';
|
assert_script_run 'cd fedora-kickstarts';
|
||||||
assert_script_run "git checkout ${branch}";
|
assert_script_run "git checkout ${branch}";
|
||||||
|
# exclude update packages in the main repo definition
|
||||||
|
assert_script_run 'sed -i -e "s,--name=,--excludepkgs=`sed -e s/ /,/g /mnt/updatepkgnames.txt` --name=,g" ' . $repoks;
|
||||||
# now add the side, tag or COPR repo to the appropriate repo ks
|
# now add the side, tag or COPR repo to the appropriate repo ks
|
||||||
assert_script_run 'echo "repo --name=advisory --baseurl=file:///mnt/update_repo" >> ' . $repoks unless ($tag || $copr);
|
assert_script_run 'echo "repo --name=advisory --baseurl=file:///mnt/update_repo" >> ' . $repoks unless ($tag || $copr);
|
||||||
assert_script_run 'echo "repo --name=openqa-testtag --baseurl=' . get_var("UPDATE_OR_TAG_REPO") . '" >> ' . $repoks if ($tag || $copr);
|
assert_script_run 'echo "repo --name=openqa-testtag --baseurl=' . get_var("UPDATE_OR_TAG_REPO") . '" >> ' . $repoks if ($tag || $copr);
|
||||||
|
Loading…
Reference in New Issue
Block a user