aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSteven Koo <steven.koo@ni.com>2022-01-20 09:43:59 -0600
committerAaron Rossetto <aaron.rossetto@ni.com>2022-02-04 13:14:22 -0600
commit8c04afbbca4575465d43b99f30eb39c08a0db7ad (patch)
tree993bfbd6fde39fa43ac200d72d60f8fd53de785a /tools
parentde0029073184282af29de39868eafa17f0f36763 (diff)
downloaduhd-8c04afbbca4575465d43b99f30eb39c08a0db7ad.tar.gz
uhd-8c04afbbca4575465d43b99f30eb39c08a0db7ad.tar.bz2
uhd-8c04afbbca4575465d43b99f30eb39c08a0db7ad.zip
ci: Add support for Ubuntu 22.04
Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/debs/uhd_ubuntu_deb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debs/uhd_ubuntu_deb.py b/tools/debs/uhd_ubuntu_deb.py
index 6739ade99..fb1b988f9 100644
--- a/tools/debs/uhd_ubuntu_deb.py
+++ b/tools/debs/uhd_ubuntu_deb.py
@@ -21,7 +21,7 @@ import subprocess
import sys
import tarfile
-supported_ubuntu_releases = ["bionic", "focal"]
+supported_ubuntu_releases = ["bionic", "focal", "jammy"]
tar_command = "tar --exclude='.git*' --exclude='./debian' --exclude='*.swp' --exclude='fpga' --exclude='build' --exclude='./images/*.pyc' --exclude='./images/uhd-*' --exclude='tags' --exclude='.ci' --exclude='.clang*' -cJf {}/uhd_{}.orig.tar.xz ."
debuild_command = "debuild -S -i -sa"
debuild_nosign = " -uc -us"