ci/cd - add ubuntu-jammy to known linux tests distro

This commit is contained in:
florian 2024-06-02 14:12:58 +02:00
parent 2283fb5f64
commit 7dccb0be20
No known key found for this signature in database
GPG key ID: 93EE47CC3D061500

View file

@ -11,7 +11,7 @@ class LinuxTest(Test):
def __init__(self, name, timeout, tests, distro, domains={}):
super().__init__(name, "linux", timeout, tests, delay=20)
self._domains = domains
if distro not in ("ubuntu", "debian", "fedora", "centos") and not distro.startswith("rhel"):
if distro not in ("ubuntu", "debian", "fedora", "centos", "ubuntu-jammy") and not distro.startswith("rhel"):
raise Exception(f"unknown distro {distro}")
self.__distro = distro