Skip to content

Commit

Permalink
Add Ubuntu 22.10 to setup builds
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo committed Sep 14, 2022
1 parent c48d415 commit 90fbfc3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -851,6 +851,7 @@ def makeForLaunchpad(doSign=False, isFirst=False, isSnapshot=False):
distLoop = [
("20.04", "focal"),
("22.04", "jammy"),
("22.10", "kinetic"),
]

tStamp = datetime.datetime.now().strftime("%Y%m%d~%H%M%S")
Expand Down
20 changes: 20 additions & 0 deletions setup/make_snapshot.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash
set -e

if [ ! -f setup.py ]; then
echo "Must be called from the root folder of the source"
exit 1
fi

echo ""
echo " Building Dependencies"
echo "================================================================================"
echo ""
python3 setup.py clean-assets
python3 setup.py qtlrelease manual sample

echo ""
echo " Building Linux Snapshots"
echo "================================================================================"
echo ""
python3 setup.py build-ubuntu --sign --snapshot

0 comments on commit 90fbfc3

Please sign in to comment.