From 9ffad13a7c0fc197f9e8e4fba919f73d99347070 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 28 May 2019 10:03:56 -0400 Subject: [PATCH] Add arm64 tools to windows AMI. --- etc/taskcluster/windows/first-boot.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etc/taskcluster/windows/first-boot.ps1 b/etc/taskcluster/windows/first-boot.ps1 index 9da5091e99c..f77ed2a2fe3 100644 --- a/etc/taskcluster/windows/first-boot.ps1 +++ b/etc/taskcluster/windows/first-boot.ps1 @@ -77,8 +77,11 @@ $client.DownloadFile("https://aka.ms/vs/15/release/vs_buildtools.exe", "C:\vs_bu Start-Process C:\vs_buildtools.exe -ArgumentList (` "--passive --norestart --includeRecommended " + "--add Microsoft.VisualStudio.Workload.VCTools " + + "--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 " + "--add Microsoft.VisualStudio.Component.VC.ATL " + - "--add Microsoft.VisualStudio.Component.VC.ATLMFC" + "--add Microsoft.VisualStudio.Component.VC.ATL.ARM64 " + + "--add Microsoft.VisualStudio.Component.VC.ATLMFC " + + "--add Microsoft.VisualStudio.Component.VC.MFC.ARM64" ) -Wait