mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-20 11:56:31 +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>
10 lines
329 B
Bash
10 lines
329 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
|
|
|
|
set -ex
|
|
|
|
# This will disable fstrim. The fstrim.timer is scheduled to activate the fstrim.service
|
|
sudo systemctl stop fstrim.timer
|
|
sudo systemctl disable fstrim.timer
|