mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-06 08:18:15 +08:00
The missing files were downloaded from their external source and placed in their directories of the cache URLs. Files: FFmpeg-n6.0.tar.gz, Postgres-2.5-14.dmg, protobuf-all-21.9.zip, MimerSQLInstaller_x64_1107b.exe, FFmpeg-n6.0.zip, msys2-base-x86_64-20220319.tar.xz, python-3.10.0-amd64.exe, python-2.7.13.msi, mimersqlsrv_11.0_amd64-openssl3.deb, mimersqlsrv-11.0.x86_64-openssl3.rpm, MinGW-w64-x86_64-11.2.0-release-posix-seh-rt_v9-rev3.7z Task-number: QTQAINFRA-5766 Change-Id: Ieacdc9138b71969397d900096956f54faff45918 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
32 lines
1.1 KiB
PowerShell
32 lines
1.1 KiB
PowerShell
# Copyright (C) 2022 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
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script will install Mimer SQL
|
|
|
|
|
|
$version = "1107b"
|
|
|
|
$url_cache = "https://ci-files01-hki.ci.qt.io/input/windows/MimerSQLInstaller_x64_" + $version + ".exe"
|
|
$url_official = "https://install.mimer.com/qt/windows_" + $version + "/MimerSQLInstaller_x64.exe"
|
|
$mimersqlPackage = "C:\Windows\Temp\MimerSQLInstaller_x64_" + $version + ".exe"
|
|
$sha1 = "A709A06EA1D897B13FA10DBDD4BE3BD0FEB04B28"
|
|
$mimer_dir="c:\MimerSQL"
|
|
|
|
Download $url_official $url_cache $mimersqlPackage
|
|
Verify-Checksum $mimersqlPackage $sha1
|
|
Run-Executable "$mimersqlPackage" "/install InstallFolder=$mimer_dir /passive"
|
|
|
|
Set-EnvironmentVariable "MIMERSQL_DEV_ROOT" "$mimer_dir\dev"
|
|
|
|
Write-Host "Cleaning $mimersqlPackage.."
|
|
#Remove "$mimersqlPackage"
|
|
Remove "$mimer_dir\dev\include\odbcinst.h"
|
|
Remove "$mimer_dir\dev\include\Sql.h"
|
|
Remove "$mimer_dir\dev\include\sqlext.h"
|
|
Remove "$mimer_dir\dev\include\sqltypes.h"
|
|
Remove "$mimer_dir\dev\include\sqlucode.h"
|
|
|
|
Write-Output "Mimer SQL = $version" >> ~\versions.txt
|