tests: use the correct copr chroot for EPEL branches

This commit is contained in:
Maxwell G 2023-06-02 18:10:45 +00:00
parent 1f76584a4d
commit 006891ac8b
No known key found for this signature in database
GPG Key ID: F79E4E25E8C661F8

View File

@ -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