mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-18 11:06:12 +08:00
SLES 15 SP6 and Opensuse 15.6 seem to need direct configuration for git and curl to take CA certificates into use. [CI Platforms] nodejs18: - Needed for QtWebEngine build done in RTA - But nodejs18 doesn't yet have a provider - Therefore using commonly installed nodejs 18.6.0 as it's available Task-number: QTQAINFRA-6746 Task-number: QTQAINFRA-6745 Change-Id: I73fb2a98a648f56b7330e26811e6d4780c51ab80 Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
18 lines
661 B
Bash
18 lines
661 B
Bash
#!/usr/bin/env bash
|
|
# Copyright (C) 2024 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"
|