mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-06 15:06:52 +08:00
RHEL-9.6 will be run in parallel with RHEL-9.4 with insignificant tests until RHEL-9.6 is confirmed stable, then it will replace RHEL-9.4. [CI Platforms] Task-number: QTQAINFRA-7528 Change-Id: I5fe6bfe6f57f1dfb7ec4aeb05560dd7f01fc7f2f Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io> Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io>
18 lines
661 B
Bash
18 lines
661 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
|
|
|
|
# This script needs to be called last during provisioning so that the software information will show up last in provision log.
|
|
|
|
# Storage installed RPM packages information
|
|
|
|
set -ex
|
|
|
|
# shellcheck disable=SC2129
|
|
echo "*********************************************" >> ~/versions.txt
|
|
echo "***** All installed RPM packages *****" >> ~/versions.txt
|
|
rpm -q -a | sort >> ~/versions.txt
|
|
echo "*********************************************" >> ~/versions.txt
|
|
|
|
"$(dirname "$0")/../common/linux/version.sh"
|