1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix copr integration tests (#3237)

Fixes: #2084
This commit is contained in:
Silvie Chlupova 2021-09-01 22:58:10 +02:00 committed by GitHub
parent c121e8685f
commit 7c493eb4e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 10 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- copr - fix chroot naming issues, ``centos-stream`` changed naming to ``centos-stream-<number>`` (for exmaple ``centos-stream-8``) (https://github.com/ansible-collections/community.general/issues/2084, https://github.com/ansible-collections/community.general/pull/3237).

View file

@ -120,8 +120,7 @@ class CoprModule(object):
@property
def short_chroot(self):
"""str: Chroot (distribution-version-architecture) shorten to distribution-version."""
chroot_parts = self.chroot.split("-")
return "{0}-{1}".format(chroot_parts[0], chroot_parts[1])
return self.chroot.rsplit('-', 1)[0]
@property
def arch(self):
@ -193,18 +192,20 @@ class CoprModule(object):
Returns:
Information about the repository.
"""
distribution, version = self.short_chroot.split("-")
distribution, version = self.short_chroot.split('-', 1)
chroot = self.short_chroot
while True:
repo_info, status_code = self._get(chroot)
if repo_info:
return repo_info
if distribution == "rhel":
chroot = "centos-stream"
chroot = "centos-stream-8"
distribution = "centos"
elif distribution == "centos":
if version == "stream":
if version == "stream-8":
version = "8"
elif version == "stream-9":
version = "9"
chroot = "epel-{0}".format(version)
distribution = "epel"
else:

View file

@ -3,4 +3,3 @@ needs/root
skip/macos
skip/osx
skip/freebsd
disabled # FIXME

View file

@ -6,7 +6,7 @@
host: copr.fedorainfracloud.org
state: enabled
name: '@copr/integration_tests'
chroot: centos-stream-x86_64
chroot: fedora-rawhide-x86_64
register: result
- name: assert that the copr project was enabled
@ -21,7 +21,7 @@
copr:
state: enabled
name: '@copr/integration_tests'
chroot: centos-stream-x86_64
chroot: fedora-rawhide-x86_64
register: result
- name: assert that the copr project was enabled
@ -46,7 +46,7 @@
copr:
state: disabled
name: '@copr/integration_tests'
chroot: centos-stream-x86_64
chroot: fedora-rawhide-x86_64
register: result
- name: assert that the copr project was disabled
@ -61,4 +61,4 @@
host: copr.fedorainfracloud.org
state: absent
name: '@copr/integration_tests'
chroot: centos-stream-x86_64
chroot: fedora-rawhide-x86_64