summaryrefslogtreecommitdiff
path: root/src/syncAzure.proj
diff options
context:
space:
mode:
authorWilliam Godbe <wigodbe@microsoft.com>2017-01-26 16:55:06 -0800
committerGitHub <noreply@github.com>2017-01-26 16:55:06 -0800
commitfbe0c29ed30496eec55910c6bb6c9b1d305ee920 (patch)
treecbb3484abaa04e7cab0d066733803526e193fa46 /src/syncAzure.proj
parent427b02caf1efdfb7c4ed1f8070851de564bde839 (diff)
downloadcoreclr-fbe0c29ed30496eec55910c6bb6c9b1d305ee920.tar.gz
coreclr-fbe0c29ed30496eec55910c6bb6c9b1d305ee920.tar.bz2
coreclr-fbe0c29ed30496eec55910c6bb6c9b1d305ee920.zip
Revert "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 0b71a3bdcd..de468b7bf7 100644
--- a/src/syncAzure.proj
+++ b/src/syncAzure.proj
@@ -5,8 +5,7 @@
<PropertyGroup>
<ContainerNamePrefix Condition="'$(ContainerNamePrefix)' == ''">coreclr-$(PreReleaseLabel)</ContainerNamePrefix>
<ContainerName Condition="'$(__Container)' == '' and '$(ContainerNamePrefix)' != '' and '$(BuildNumberMajor)' != '' and '$(BuildNumberMinor)' != ''">$(ContainerNamePrefix)-$(BuildNumberMajor)-$(BuildNumberMinor)</ContainerName>
- <ContainerName Condition="'$(__Container)' != '' and '$(PublishTestNativeBins)' != 'true'">$(__Container)</ContainerName>
- <ContainerName Condition="'$(__Container)' != '' and '$(PublishTestNativeBins)' == 'true'">$(__Container)-test-native-bins</ContainerName>
+ <ContainerName Condition="'$(__Container)' != ''">$(__Container)</ContainerName>
<DownloadDirectory Condition="'$(PublishTestNativeBins)' != 'true'">$(PackagesDir)AzureTransfer</DownloadDirectory>
<DownloadDirectory Condition="'$(PublishTestNativeBins)' == 'true'">$(PackagesDir)TestNativeBins</DownloadDirectory>
</PropertyGroup>
@@ -16,6 +15,7 @@
<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" />