Add Ubuntu 22.10 to setup builds
This commit is contained in:
@@ -851,6 +851,7 @@ def makeForLaunchpad(doSign=False, isFirst=False, isSnapshot=False):
|
|||||||
distLoop = [
|
distLoop = [
|
||||||
("20.04", "focal"),
|
("20.04", "focal"),
|
||||||
("22.04", "jammy"),
|
("22.04", "jammy"),
|
||||||
|
("22.10", "kinetic"),
|
||||||
]
|
]
|
||||||
|
|
||||||
tStamp = datetime.datetime.now().strftime("%Y%m%d~%H%M%S")
|
tStamp = datetime.datetime.now().strftime("%Y%m%d~%H%M%S")
|
||||||
|
|||||||
Executable
+20
@@ -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
|
||||||
Reference in New Issue
Block a user