Skip to content

Commit

Permalink
Re-enable publishing of transport packages (dotnet/coreclr#21922)
Browse files Browse the repository at this point in the history
Commit migrated from dotnet/coreclr@f14a878
  • Loading branch information
sbomer authored Jan 10, 2019
1 parent f6352b8 commit 2645dc8
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/coreclr/src/publishwitharcade.proj
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,20 @@

<ItemGroup>
<PackagesToPublish Include="$(PackagesBinDir)pkg\*.nupkg" IsShipping="true" />
<PackagesToPublish Update="$(PackagesBinDir)pkg\transport*.nupkg" IsShipping="false" />
<SymbolPackagesToPublish Include="$(PackagesBinDir)symbolpkg\*.nupkg" IsShipping="true" />
</ItemGroup>

<!-- Managed-only packages are built on each windows leg, but we
only want to upload them once. Let's arbitrarily upload these
only from the x64 leg. -->
<ItemGroup Condition=" '$(BuildArch)' != 'x64' ">
<PackagesToPublish Remove="$(PackagesBinDir)pkg\Microsoft.NET.Sdk.IL*.nupkg" />
<PackagesToPublish Remove="$(PackagesBinDir)pkg\Microsoft.TargetingPack.Private.CoreCLR*.nupkg" />

<PackagesToPublish Remove="$(PackagesBinDir)pkg\*Microsoft.NET.Sdk.IL*.nupkg" />
<PackagesToPublish Remove="$(PackagesBinDir)pkg\*Microsoft.TargetingPack.Private.CoreCLR*.nupkg" />
<SymbolPackagesToPublish Remove="$(PackagesBinDir)symbolpkg\Microsoft.NET.Sdk.IL*.nupkg" />
<SymbolPackagesToPublish Remove="$(PackagesBinDir)symbolpkg\Microsoft.TargetingPack.Private.CoreCLR*.nupkg" />
</ItemGroup>

<!-- TODO: Investigate whether we can get rid of the transport
packages entirely. For now, just exclude them from
publishing. -->
<ItemGroup>
<PackagesToPublish Remove="$(PackagesBinDir)pkg\transport*.nupkg" />
</ItemGroup>

<ItemGroup>
<ItemsToPushToBlobFeed Include="@(PackagesToPublish);@(SymbolPackagesToPublish)">
<ManifestArtifactData Condition="!%(IsShipping)">NonShipping=true</ManifestArtifactData> <!-- TODO: how is this metadata used? -->
Expand Down

0 comments on commit 2645dc8

Please sign in to comment.