summaryrefslogtreecommitdiff
path: root/eng/common
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2019-04-11 12:59:29 -0400
committerStephen Toub <stoub@microsoft.com>2019-04-11 12:59:29 -0400
commit449285b8b7ccc7158038e5ca3e6cfe11a0d7cc29 (patch)
treea4d98cfca632ba0e6d57468ccf55f06638a50839 /eng/common
parentb574fac287e8ebe94f95d1b0919807523bb55b86 (diff)
downloadcoreclr-449285b8b7ccc7158038e5ca3e6cfe11a0d7cc29.tar.gz
coreclr-449285b8b7ccc7158038e5ca3e6cfe11a0d7cc29.tar.bz2
coreclr-449285b8b7ccc7158038e5ca3e6cfe11a0d7cc29.zip
[master] Update dependencies from dotnet/arcade (#23834)
* Update dependencies from https://github.com/dotnet/arcade build 20190409.1 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19209.1 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19209.1 * Update dependencies from https://github.com/dotnet/arcade build 20190409.2 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19209.2 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19209.2 * Update dependencies from https://github.com/dotnet/arcade build 20190410.7 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19210.7 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19210.7
Diffstat (limited to 'eng/common')
-rw-r--r--eng/common/PublishToSymbolServers.proj8
-rw-r--r--eng/common/templates/phases/publish-build-assets.yml2
2 files changed, 10 insertions, 0 deletions
diff --git a/eng/common/PublishToSymbolServers.proj b/eng/common/PublishToSymbolServers.proj
index 36c08f0ea4..5d55e312b0 100644
--- a/eng/common/PublishToSymbolServers.proj
+++ b/eng/common/PublishToSymbolServers.proj
@@ -24,6 +24,14 @@
<ItemGroup>
<FilesToPublishToSymbolServer Include="$(PDBArtifactsDirectory)\*.pdb"/>
<PackagesToPublishToSymbolServer Include="$(BlobBasePath)\*.symbols.nupkg"/>
+
+ <!--
+ These packages from Arcade-Services include some native libraries that
+ our current symbol uploader can't handle. Below is a workaround until
+ we get issue: https://github.com/dotnet/arcade/issues/2457 sorted.
+ -->
+ <PackagesToPublishToSymbolServer Remove="$(BlobBasePath)\Microsoft.DotNet.Darc.*" />
+ <PackagesToPublishToSymbolServer Remove="$(BlobBasePath)\Microsoft.DotNet.Maestro.Tasks.*" />
</ItemGroup>
<PropertyGroup>
diff --git a/eng/common/templates/phases/publish-build-assets.yml b/eng/common/templates/phases/publish-build-assets.yml
index 211967deba..a0a8074282 100644
--- a/eng/common/templates/phases/publish-build-assets.yml
+++ b/eng/common/templates/phases/publish-build-assets.yml
@@ -5,6 +5,7 @@ parameters:
condition: succeeded()
continueOnError: false
runAsPublic: false
+ publishUsingPipelines: false
phases:
- phase: Asset_Registry_Publish
displayName: Publish to Build Asset Registry
@@ -36,6 +37,7 @@ phases:
/p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests'
/p:BuildAssetRegistryToken=$(MaestroAccessToken)
/p:MaestroApiEndpoint=https://maestro-prod.westus2.cloudapp.azure.com
+ /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }}
/p:Configuration=$(_BuildConfig)
condition: ${{ parameters.condition }}
continueOnError: ${{ parameters.continueOnError }}