From 9bf65bc8291627b13c22873b008df3d8f787c0d1 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Thu, 16 Feb 2023 23:49:18 +0200 Subject: [PATCH] dev_scripts: Add extra distros in QA script Add some distros in the QA script that were missing from the list of our supported ones. --- dev_scripts/qa.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dev_scripts/qa.py b/dev_scripts/qa.py index 1c15da4..b98f8a8 100755 --- a/dev_scripts/qa.py +++ b/dev_scripts/qa.py @@ -762,6 +762,24 @@ class QADebianBased(QALinux): self.shell_run("./install/linux/build-deb.py") +class QADebianBullseye(QADebianBased): + + DISTRO = "debian" + VERSION = "bullseye" + + +class QADebianBookworm(QADebianBased): + + DISTRO = "debian" + VERSION = "bookworm" + + +class QAUbuntu2004(QADebianBased): + + DISTRO = "ubuntu" + VERSION = "20.04" + + class QAUbuntu2204(QADebianBased): DISTRO = "ubuntu"