mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-18 02:06:20 +08:00
Export CI_ICU_PATH variables on all windows templates
That is needed to change provisioning way in Coin, as currently it depends on variables hard-coded in Coin agent. Change-Id: I15068bec57dd9d67be05ef753d566b456fb8a2fc Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
This commit is contained in:
committed by
Frederik Gladhorn
parent
2be9656332
commit
a97874523f
9
coin/provisioning/common/icu.ps1
Normal file
9
coin/provisioning/common/icu.ps1
Normal file
@@ -0,0 +1,9 @@
|
||||
# ICU is already pre-installed on Windows machines, it would be nice to have
|
||||
# the installation script, but for now let's just export the right variables
|
||||
|
||||
# FIXME: do we really want to have it per MSVC version? What about MSVC2015?
|
||||
[Environment]::SetEnvironmentVariable("CI_ICU_PATH_MSVC2012", "C:\\Utils\\icu_53_1_msvc_2012_64_devel\\icu53_1", "Machine")
|
||||
[Environment]::SetEnvironmentVariable("CI_ICU_PATH_MSVC2013", "C:\\Utils\\icu_53_1_msvc_2013_64_devel\\icu53_1", "Machine")
|
||||
|
||||
# FIXME: do we really want to use the 4.8.2 ICU build?
|
||||
[Environment]::SetEnvironmentVariable("CI_ICU_PATH_Mingw49", "C:\Utils\icu_53_1_Mingw_builds_4_8_2_posix_seh_64_devel\icu53_1", "Machine")
|
||||
6
coin/provisioning/qtci-windows-10-x86/icu.ps1
Normal file
6
coin/provisioning/qtci-windows-10-x86/icu.ps1
Normal file
@@ -0,0 +1,6 @@
|
||||
Set-ExecutionPolicy RemoteSigned -Force
|
||||
|
||||
# install jom
|
||||
. "$PSScriptRoot\..\common\icu.ps1"
|
||||
|
||||
Set-ExecutionPolicy Restricted -Force
|
||||
6
coin/provisioning/qtci-windows-10-x86_64/icu.ps1
Normal file
6
coin/provisioning/qtci-windows-10-x86_64/icu.ps1
Normal file
@@ -0,0 +1,6 @@
|
||||
Set-ExecutionPolicy RemoteSigned -Force
|
||||
|
||||
# install jom
|
||||
. "$PSScriptRoot\..\common\icu.ps1"
|
||||
|
||||
Set-ExecutionPolicy Restricted -Force
|
||||
6
coin/provisioning/qtci-windows-7-x86/icu.ps1
Normal file
6
coin/provisioning/qtci-windows-7-x86/icu.ps1
Normal file
@@ -0,0 +1,6 @@
|
||||
Set-ExecutionPolicy RemoteSigned -Force
|
||||
|
||||
# install jom
|
||||
. "$PSScriptRoot\..\common\icu.ps1"
|
||||
|
||||
Set-ExecutionPolicy Restricted -Force
|
||||
6
coin/provisioning/qtci-windows-8-x86/icu.ps1
Normal file
6
coin/provisioning/qtci-windows-8-x86/icu.ps1
Normal file
@@ -0,0 +1,6 @@
|
||||
Set-ExecutionPolicy RemoteSigned -Force
|
||||
|
||||
# install jom
|
||||
. "$PSScriptRoot\..\common\icu.ps1"
|
||||
|
||||
Set-ExecutionPolicy Restricted -Force
|
||||
6
coin/provisioning/qtci-windows-8-x86_64/icu.ps1
Normal file
6
coin/provisioning/qtci-windows-8-x86_64/icu.ps1
Normal file
@@ -0,0 +1,6 @@
|
||||
Set-ExecutionPolicy RemoteSigned -Force
|
||||
|
||||
# install jom
|
||||
. "$PSScriptRoot\..\common\icu.ps1"
|
||||
|
||||
Set-ExecutionPolicy Restricted -Force
|
||||
Reference in New Issue
Block a user