summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Hoyos <juan.hoyos@microsoft.com>2019-05-31 16:04:38 -0700
committerGitHub <noreply@github.com>2019-05-31 16:04:38 -0700
commita9509fc30f9351f0339395b109135347cdf84ef9 (patch)
tree6cf48464dfd45d51fdad5df7d7d74e8034b55b6a
parent06f1634c3157dc279779f3dad7d2f327416e3f09 (diff)
downloadcoreclr-a9509fc30f9351f0339395b109135347cdf84ef9.tar.gz
coreclr-a9509fc30f9351f0339395b109135347cdf84ef9.tar.bz2
coreclr-a9509fc30f9351f0339395b109135347cdf84ef9.zip
Add workaround for native tool installation CI hang (#24899)
-rw-r--r--eng/configure-toolset.ps13
-rw-r--r--eng/configure-toolset.sh5
2 files changed, 7 insertions, 1 deletions
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