mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-05 16:06:31 +08:00
This reverts commit 72f11e0952.
Reason for revert: WoA is not going be included in 6.7 and WoA target is blocking dd08ded0fc20f5fce10bf287d4d22ae026226717, -51 template will not work with the proxy enabled and -53 template brings error C2672 with its updated MSVC in 6.7 qtbase.
Task-number: QTQAINFRA-6111
Change-Id: I13fde01aba392b173db178bff6893b71c20ae98a
Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
32 lines
1.0 KiB
PowerShell
32 lines
1.0 KiB
PowerShell
# Copyright (C) 2020 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 Node.js
|
|
# Needed by QtWebengine
|
|
|
|
$version = "20.7.0"
|
|
if (Is64BitWinHost) {
|
|
$arch = "x64"
|
|
$sha256 = "b3e5cbf8e247c75f9ddd235d49cfe40f25dde65bdd0eec4cefbca2805d80376b"
|
|
} else {
|
|
$arch = "x86"
|
|
$sha256 = "d6a3c63a5ae71374c144a33c418ab96be497b08df0e9f51861a78127db03aeb5"
|
|
}
|
|
|
|
$package = "C:\Windows\temp\nodejs-$version.7z"
|
|
$targetFolder = "C:\Utils"
|
|
$installFolder = "C:\Utils\node-v$version-win-$arch"
|
|
$externalUrl = "https://nodejs.org/dist/v$version/node-v$version-win-$arch.7z"
|
|
$internalUrl = "http://ci-files01-hki.ci.qt.io/input/windows/node-v$version-win-$arch.7z"
|
|
|
|
Write-Host "Installing Node.js"
|
|
Download $externalUrl $internalUrl $package
|
|
Verify-Checksum $package $sha256 "sha256"
|
|
Extract-7Zip $package $targetFolder
|
|
Add-Path $installFolder
|
|
Remove $package
|
|
|
|
Write-Output "Node.js = $version" >> ~/versions.txt
|