mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-14 16:25:52 +08:00
RHEL-9.4 will be run in parallel with RHEL-9.2 with insignificant tests
until RHEL-9.4 is confirmed stable, then it will replace RHEL-9.2.
[CI Platforms]
Adapted for 6.8:
* remove install-firebird.sh, which is only in dev
* remove 90-install-oracle.sh, which is only in dev
Task-number: QTQAINFRA-6362
Change-Id: I92c10a15346e7bd0c0190a8d6a6513cf6143d2a8
(cherry picked from commit ee8ee93d91)
Reviewed-by: Tim Blechmann <tim.blechmann@qt.io>
35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
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
|
|
|
|
echo "set WritePreparedUpdates=false" | sudo tee -a /etc/PackageKit/PackageKit.conf
|
|
sudo systemctl stop packagekit
|
|
sudo systemctl mask --now packagekit
|
|
while sudo fuser /usr/libexec/packagekitd >/dev/null 2>&1; do
|
|
echo "Waiting for PackageKit to finish..."
|
|
sleep 1
|
|
sudo systemctl stop packagekit
|
|
done
|
|
sudo yum -y remove PackageKit gnome-software
|
|
|
|
sudo subscription-manager config --rhsm.manage_repos=1
|
|
sudo subscription-manager refresh
|
|
|
|
# List available RHEL versions and bind with correct one
|
|
sudo subscription-manager release --list
|
|
sudo subscription-manager release --set=9.4
|
|
sudo yum clean all
|
|
|
|
# sudo yum config-manager --enable 'rhceph-4-tools-for-rhel-8-x86_64-rpms'
|
|
sudo yum config-manager --enable 'codeready-builder-for-rhel-9-x86_64-rpms'
|
|
sudo yum config-manager --enable 'rhel-9-for-x86_64-baseos-rpms'
|
|
sudo yum config-manager --enable 'rhel-9-for-x86_64-appstream-rpms'
|
|
# Epel is required for 'double-conversion-devel', 'libsqlite3x' and 'p7zip'
|
|
sudo dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
|
|
|
|
sudo yum clean all
|
|
# As well as this fetching the repository data, we also get a printout of the used repos
|
|
sudo yum repolist
|