summaryrefslogtreecommitdiff
path: root/src/syncAzure.proj
diff options
context:
space:
mode:
authorWilliam Godbe <wigodbe@microsoft.com>2017-01-26 16:55:03 -0800
committerGitHub <noreply@github.com>2017-01-26 16:55:03 -0800
commit427b02caf1efdfb7c4ed1f8070851de564bde839 (patch)
treef845c4d81529dc9e9c9bf1642b5c2f72ca641c91 /src/syncAzure.proj
parent0ff5302eb0fab432c3af5b7277f0f86f2705f7b3 (diff)
parentfdcda4dd6da13d903228a66625fac4d6e2a1afe0 (diff)
downloadcoreclr-427b02caf1efdfb7c4ed1f8070851de564bde839.tar.gz
coreclr-427b02caf1efdfb7c4ed1f8070851de564bde839.tar.bz2
coreclr-427b02caf1efdfb7c4ed1f8070851de564bde839.zip
Merge pull request #9155 from dotnet/revert-9152-SpeedUpSync
Revert "Speed up test native binary syncing in pipeline"
Diffstat (limited to 'src/syncAzure.proj')
-rw-r--r--src/syncAzure.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syncAzure.proj b/src/syncAzure.proj
index de468b7bf7..0b71a3bdcd 100644
--- a/src/syncAzure.proj
+++ b/src/syncAzure.proj
@@ -5,7 +5,8 @@
<PropertyGroup>
<ContainerNamePrefix Condition="'$(ContainerNamePrefix)' == ''">coreclr-$(PreReleaseLabel)</ContainerNamePrefix>
<ContainerName Condition="'$(__Container)' == '' and '$(ContainerNamePrefix)' != '' and '$(BuildNumberMajor)' != '' and '$(BuildNumberMinor)' != ''">$(ContainerNamePrefix)-$(BuildNumberMajor)-$(BuildNumberMinor)</ContainerName>
- <ContainerName Condition="'$(__Container)' != ''">$(__Container)</ContainerName>
+ <ContainerName Condition="'$(__Container)' != '' and '$(PublishTestNativeBins)' != 'true'">$(__Container)</ContainerName>
+ <ContainerName Condition="'$(__Container)' != '' and '$(PublishTestNativeBins)' == 'true'">$(__Container)-test-native-bins</ContainerName>
<DownloadDirectory Condition="'$(PublishTestNativeBins)' != 'true'">$(PackagesDir)AzureTransfer</DownloadDirectory>
<DownloadDirectory Condition="'$(PublishTestNativeBins)' == 'true'">$(PackagesDir)TestNativeBins</DownloadDirectory>
</PropertyGroup>
@@ -15,7 +16,6 @@
<Target Name="ValidateRequiredProperties">
<Error Condition="'$(CloudDropAccountName)' == ''" Text="Missing property CloudDropAccountName." />
<Error Condition="'$(CloudDropAccessToken)' == ''" Text="Missing property CloudDropAccessToken." />
- <Error Condition="'$(__Container)' == '' and '$(PublishTestNativeBins)' == 'true'" Text="Missing property Container." />
</Target>
<Target Name="Build" DependsOnTargets="ValidateRequiredProperties;DownloadBlobsFromAzureTargets" />