mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-24 07:11:29 +08:00
Replaces macOS 15 nightly. Task-number: QTQAINFRA-7196 Change-Id: I3ea042382c13ec9584cf8cc163d43b51f61c78a3 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
15 lines
544 B
Bash
Executable File
15 lines
544 B
Bash
Executable File
#!/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
|
|
|
|
# shellcheck source=../common/macos/install-simulator-runtime.sh
|
|
source "${BASH_SOURCE%/*}/../common/macos/install-simulator-runtime.sh"
|
|
version="18.0"
|
|
packageName=iOS_"$version"_Simulator_Runtime.dmg
|
|
url="http://ci-files01-hki.ci.qt.io/input/mac/$packageName"
|
|
sha1="f29778313459b3a2a497ffd711b9dfa212241183"
|
|
|
|
InstallSimulatorRuntime $url $url $sha1 $packageName $version
|