mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 06:41:47 +08:00
2ed44b4546
* Cherry-pick https://github.com/microsoft/vcpkg/pull/15598 * Hook deploy-inteloneapi into create-vmss.ps1. * Add script to resolve https://github.com/microsoft/vcpkg/issues/17521 * Move tls settings deployment to the front and respond to script triggering a reboot. * Go back to provisioning an extra disk to workaround https://github.com/microsoft/vcpkg/issues/18379 * Disallow public access to blob storage and require TLS 1.2. * Update Pools. * Update tool to 2021-06-19 * [simage] Skip simage on uwp platforms as it appears broken by 16.10. * [tensorflow-cc] Skip because changes in our MacOS hardware broke the port.
19 lines
677 B
PowerShell
19 lines
677 B
PowerShell
# This script runs all the scripts we run on Azure machines to deploy prerequisites,
|
|
# and assumes it is being run as an admin user.
|
|
|
|
. "$PSScriptRoot\utility-prefix.ps1"
|
|
|
|
. "$PSScriptRoot\deploy-tlssettings.ps1" -RebootIfRequired 0
|
|
. "$PSScriptRoot\deploy-visual-studio.ps1"
|
|
. "$PSScriptRoot\deploy-windows-wdk.ps1"
|
|
. "$PSScriptRoot\deploy-mpi.ps1"
|
|
. "$PSScriptRoot\deploy-cuda.ps1"
|
|
. "$PSScriptRoot\deploy-inteloneapi.ps1"
|
|
. "$PSScriptRoot\deploy-pwsh.ps1"
|
|
try {
|
|
Copy-Item "$PSScriptRoot\deploy-settings.txt" "$PSScriptRoot\deploy-settings.ps1"
|
|
. "$PSScriptRoot\deploy-settings.ps1"
|
|
} finally {
|
|
Remove-Item "$PSScriptRoot\deploy-settings.ps1"
|
|
}
|