mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-13 07:45:53 +08:00
Use Ubuntu 22.04 instead of 20.04 Pick-to: 6.7 Change-Id: If03ba14555fdcd0c98fab3843bdfd5c2ca1eba3f Reviewed-by: Toni Saario <toni.saario@qt.io>
58 lines
1.7 KiB
Bash
Executable File
58 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2021 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# Setups sbuild environment
|
|
|
|
tee ~/.sbuildrc << EOF
|
|
##############################################################################
|
|
# PACKAGE BUILD RELATED (additionally produce _source.changes)
|
|
##############################################################################
|
|
# -d
|
|
\$distribution = 'stable';
|
|
# -A
|
|
\$build_arch_all = 1;
|
|
# -s
|
|
\$build_source = 1;
|
|
# -v
|
|
\$verbose = 1;
|
|
# parallel build
|
|
\$ENV{'DEB_BUILD_OPTIONS'} = 'parallel=8';
|
|
##############################################################################
|
|
# POST-BUILD RELATED (turn off functionality by setting variables to 0)
|
|
##############################################################################
|
|
\$run_lintian = 1;
|
|
\$lintian_opts = ['-i', '-I'];
|
|
\$run_piuparts = 0;
|
|
\$piuparts_opts = ['--schroot', 'stable-amd64-sbuild', '--no-eatmydata'];
|
|
\$run_autopkgtest = 0;
|
|
\$autopkgtest_root_args = '';
|
|
\$autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ];
|
|
|
|
##############################################################################
|
|
# PERL MAGIC
|
|
##############################################################################
|
|
1;
|
|
EOF
|
|
|
|
# Add user group
|
|
sudo sbuild-adduser "$LOGNAME"
|
|
newgrp sbuild
|
|
|
|
# Create chroot
|
|
sudo sbuild-createchroot --include=eatmydata,ccache,gnupg,ca-certificates stable /srv/chroot/stable-amd64
|
|
|
|
# For ubuntu 22.04
|
|
echo "Create chroot for Ubuntu Jammy"
|
|
## ccache can't be found with Jammy
|
|
sudo sbuild-createchroot --include=eatmydata,gnupg,ca-certificates jammy /srv/chroot/jammy-amd64 http://archive.ubuntu.com/ubuntu/
|
|
echo "Done creating chroot for Ubuntu Jammy"
|
|
|
|
# Update chroot.
|
|
sudo sbuild-update -udcar stable
|
|
|
|
|
|
|
|
|
|
|