tests: use the correct copr chroot for EPEL branches
This commit is contained in:
parent
1f76584a4d
commit
006891ac8b
@ -10,7 +10,13 @@ localhost ansible_connection=local
|
||||
EOF
|
||||
export ANSIBLE_INVENTORY=inventory
|
||||
|
||||
ansible localhost -bm setup
|
||||
chroot="fedora-rawhide-x86_64"
|
||||
|
||||
ansible localhost -bm setup |& tee out
|
||||
|
||||
if ! grep Fedora out; then
|
||||
chroot="epel-9-x86_64"
|
||||
fi
|
||||
|
||||
ansible localhost -b \
|
||||
-m package \
|
||||
@ -21,13 +27,13 @@ grep -F 'localhost | SUCCESS' out
|
||||
|
||||
ansible localhost -b \
|
||||
-m community.general.copr \
|
||||
-a "name=gotmax23/community.general.copr_integration_tests chroot=fedora-rawhide-x86_64" \
|
||||
-a "name=gotmax23/community.general.copr_integration_tests chroot=${chroot}" \
|
||||
|& tee out
|
||||
grep -F 'localhost | CHANGED' out
|
||||
|
||||
ansible localhost -b \
|
||||
-m package \
|
||||
-a name=copr-module-integration-dummy-package \
|
||||
-a name=copr-module-integration-dummy-package \
|
||||
|& tee out
|
||||
grep -F 'localhost | CHANGED' out
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user