Download artifacts in parallel (#18549)

This commit is contained in:
Matt Mitchell 2024-02-07 08:05:52 -08:00 committed by GitHub
parent e3126dc9d9
commit 0368ac38f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 21 deletions

View file

@ -28,10 +28,7 @@
</BundledToolLayoutProject>
</ItemGroup>
<MSBuild
BuildInParallel="False"
Projects="@(BundledToolLayoutProject)">
</MSBuild>
<MSBuild Projects="@(BundledToolLayoutProject)" />
</Target>
</Project>

View file

@ -26,10 +26,7 @@
</CrossGenDownloadPackageProject>
</ItemGroup>
<MSBuild
BuildInParallel="False"
Projects="@(CrossGenDownloadPackageProject)">
</MSBuild>
<MSBuild Projects="@(CrossGenDownloadPackageProject)" />
<!-- This PropertyGroup contains the paths to the various SDK tooling that should be
cross-genned. This tooling multi-targets, and we only want to cross-gen the .NET Core

View file

@ -409,10 +409,7 @@
</BundledLayoutPackageDownloadProject>
</ItemGroup>
<MSBuild
BuildInParallel="False"
Projects="@(BundledLayoutPackageDownloadProject)">
</MSBuild>
<MSBuild Projects="@(BundledLayoutPackageDownloadProject)" />
<ItemGroup>
<!-- Use lowercase package name in package path -->
@ -534,10 +531,7 @@
</AppHostTemplateDownloadPackageProject>
</ItemGroup>
<MSBuild
BuildInParallel="False"
Projects="@(AppHostTemplateDownloadPackageProject)">
</MSBuild>
<MSBuild Projects="@(AppHostTemplateDownloadPackageProject)" />
<PropertyGroup>
<AppHostExecutableName>AppHost$(ExeExtension)</AppHostExecutableName>

View file

@ -82,8 +82,7 @@
<MSBuild Projects="$(MSBuildProjectFullPath)"
Targets="InstallRuntimeToLayout"
Properties="RuntimeVersionToInstall=%(RuntimeVersionToInstall.Identity)"
BuildInParallel="false"/>
Properties="RuntimeVersionToInstall=%(RuntimeVersionToInstall.Identity)" />
</Target>
<Target Name="InstallRuntimeToLayout">
@ -155,9 +154,7 @@
</ItemGroup>
<MSBuild Projects="@(TestProjectToRun)"
Targets="RunTestsAsTool"
BuildInParallel="true"
/>
Targets="RunTestsAsTool" />
</Target>
<Target Name="RunTestsAsTool">