mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-15 08:46:00 +08:00
RHEL-8.10 will be run in parallel with RHEL-8.8 in CI as non-blocking
until RHEL-8.10 is confirmed stable, then it will replace RHEL-8.8.
Task-number: QTQAINFRA-6367
Change-Id: I4b470754895a72be026e869eb4e4d273eb3801b4
(cherry picked from commit ba9d0e2e4e)
Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io>
Reviewed-by: Simo Fält <simo.falt@qt.io>
30 lines
1002 B
Bash
30 lines
1002 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2023 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
|
|
|
|
set -ex
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
# shellcheck source=../common/shared/network_test_server_ip.txt
|
|
source "$BASEDIR/../common/shared/network_test_server_ip.txt"
|
|
|
|
echo "Set Network Test Server address to $network_test_server_ip in /etc/hosts"
|
|
echo "$network_test_server_ip qt-test-server qt-test-server.qt-test-net" | sudo tee -a /etc/hosts
|
|
echo "Set DISPLAY"
|
|
echo 'export DISPLAY=":0"' >> ~/.bashrc
|
|
# for current session
|
|
export DISPLAY=:0
|
|
|
|
# Set timezone to UTC.
|
|
sudo timedatectl set-timezone Etc/UTC
|
|
# disable Automatic screen lock
|
|
gsettings set org.gnome.desktop.screensaver lock-enabled false
|
|
# disable blank screen power saving
|
|
gsettings set org.gnome.desktop.session idle-delay 0
|
|
|
|
# Set Wayland enable as false.
|
|
echo "Setting Wayland enable as false"
|
|
sudo sed -i 's/#WaylandEnable=false/WaylandEnable=false/g' /etc/gdm/custom.conf
|
|
|