mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
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.
This commit is contained in:
parent
ce86c1b126
commit
9bf65bc829
1 changed files with 18 additions and 0 deletions
|
@ -762,6 +762,24 @@ class QADebianBased(QALinux):
|
||||||
self.shell_run("./install/linux/build-deb.py")
|
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):
|
class QAUbuntu2204(QADebianBased):
|
||||||
|
|
||||||
DISTRO = "ubuntu"
|
DISTRO = "ubuntu"
|
||||||
|
|
Loading…
Reference in a new issue