From a9509fc30f9351f0339395b109135347cdf84ef9 Mon Sep 17 00:00:00 2001 From: Juan Hoyos Date: Fri, 31 May 2019 16:04:38 -0700 Subject: Add workaround for native tool installation CI hang (#24899) --- eng/configure-toolset.ps1 | 3 +++ eng/configure-toolset.sh | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/eng/configure-toolset.ps1 b/eng/configure-toolset.ps1 index 96aed776bb..eeb99c3409 100644 --- a/eng/configure-toolset.ps1 +++ b/eng/configure-toolset.ps1 @@ -7,3 +7,6 @@ $script:useInstalledDotNetCli = $false # Always use the local repo packages directory instead of # the user's NuGet cache $script:useGlobalNuGetCache = $false + +# Working around issue https://github.com/dotnet/arcade/issues/2673 +$script:DisableNativeToolsetInstalls = $true diff --git a/eng/configure-toolset.sh b/eng/configure-toolset.sh index c5af261c6f..86cdfae49b 100644 --- a/eng/configure-toolset.sh +++ b/eng/configure-toolset.sh @@ -6,4 +6,7 @@ use_installed_dotnet_cli=false # Always use the local repo packages directory instead of # the user's NuGet cache -use_global_nuget_cache=false \ No newline at end of file +use_global_nuget_cache=false + +# Working around issue https://github.com/dotnet/arcade/issues/2673 +DisableNativeToolsetInstalls=true -- cgit v1.2.3