diff options
author | Steven Koo <steven.koo@ni.com> | 2022-01-20 09:43:59 -0600 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-02-04 13:14:22 -0600 |
commit | 8c04afbbca4575465d43b99f30eb39c08a0db7ad (patch) | |
tree | 993bfbd6fde39fa43ac200d72d60f8fd53de785a /tools | |
parent | de0029073184282af29de39868eafa17f0f36763 (diff) | |
download | uhd-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.py | 2 |
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" |