mirror of
git://code.qt.io/qt/qt5.git
synced 2025-12-21 07:28:21 +08:00
The Python provisioning on macOS ARM hosts is done multiple times across separate targets. This patch moves the code into a common script 'macos/python-arm.sh'. As a drive-by, we bump the version of all targets to 3.12.11, whch is the same as the one used in the macOS 15 ARM host. Pick-to: 6.11 6.10 6.8 Change-Id: I8c1f6f7d635fe47b9faa34dbe6988e89252dc2c9 Reviewed-by: Artem Dyomin <artem.dyomin@qt.io>
10 lines
325 B
Bash
Executable File
10 lines
325 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2021 The Qt Company Ltd.
|
|
# Copyright (C) 2017 Pelagicore AG
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
set -euox pipefail
|
|
|
|
# shellcheck source=../common/macos/python-arm.sh
|
|
source "${BASH_SOURCE%/*}/../common/macos/python-arm.sh"
|