GitHub user bradh352 added a comment to the discussion: Building Cloudstack DEB packages for Ubuntu
Ok that appeared to build some packages. That said, it does have a ~jammy suffix on the .debs. Is that installable on 24.04 (noble)? ``` dpkg-deb: building package 'cloudstack-docs' in '../cloudstack-docs_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-common' in '../cloudstack-common_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-integration-tests' in '../cloudstack-integration-tests_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-marvin' in '../cloudstack-marvin_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-ui' in '../cloudstack-ui_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-usage' in '../cloudstack-usage_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-agent' in '../cloudstack-agent_4.22.0.0~jammy_all.deb'. dpkg-deb: building package 'cloudstack-management' in '../cloudstack-management_4.22.0.0~jammy_all.deb'. ``` FYI, my full build command was: ``` curl -fsSL https://deb.nodesource.com/setup_22.x | sudo bash - && \ sudo apt-get update && \ sudo apt-get install -y build-essential git devscripts debhelper openjdk-17-jdk libws-commons-util-java genisoimage libcommons-codec-java libcommons-httpclient-java liblog4j1.2-java maven nodejs python3-mysql.connector python2 python-setuptools jq && \ git clone -b 4.22.0.0 https://github.com/apache/cloudstack && \ wget https://patch-diff.githubusercontent.com/raw/apache/cloudstack/pull/11932.patch && \ cd cloudstack && \ git config user.email "[email protected]" && \ git am < ../11932.patch && \ cd packaging && \ NODE_OPTIONS=--openssl-legacy-provider ACS_BUILD_OPTS="-DskipTests -T `nproc`" ./build-deb.sh ``` GitHub link: https://github.com/apache/cloudstack/discussions/12177#discussioncomment-15140751 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
