mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-12 07:16:08 +08:00
Adding all builds Wayland which is the default display
server for Ubuntu. Testing each module in X11, and
testing Wayland client plugin for each module in
Qt Wayland integration. [CI Platforms]
TestDocs was removed, see also QTQAINFRA-6068.
Task-number: QTQAINFRA-6322
Task-number: QTQAINFRA-6098
Task-number: QTQAINFRA-6203
Change-Id: I8db0d861940bdd558384f1cc24243c6a84e133e2
Reviewed-by: Liang Qi <liang.qi@qt.io>
(cherry picked from commit 5a79cf9168)
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
58 lines
1.8 KiB
Bash
58 lines
1.8 KiB
Bash
#!/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 24.04
|
|
echo "Create chroot for Ubuntu Noble"
|
|
## ccache can't be found with Jammy (TODO: but now we have Noble - this should be tested)
|
|
sudo sbuild-createchroot --include=eatmydata,gnupg,ca-certificates noble /srv/chroot/noble-amd64 http://archive.ubuntu.com/ubuntu/
|
|
echo "Done creating chroot for Ubuntu Noble"
|
|
|
|
# Update chroot.
|
|
sudo sbuild-update -udcar stable
|
|
|
|
|
|
|
|
|
|
|