Disable UWP pkg publishing to fix official builds (dotnet/corefx#41279)
authorViktor Hofer <viktor.hofer@microsoft.com>
Tue, 24 Sep 2019 10:46:11 +0000 (12:46 +0200)
committerGitHub <noreply@github.com>
Tue, 24 Sep 2019 10:46:11 +0000 (12:46 +0200)
Commit migrated from https://github.com/dotnet/corefx/commit/0a51b2d9b191a12768d4d1410d0c200bba558522

eng/pipelines/libraries/windows.yml

index 1235c25..e6ca229 100644 (file)
@@ -89,12 +89,14 @@ stages:
                 _architecture: x64
                 _framework: uap
                 _helixQueues: $(uapNetfxQueues)
+                _skipPublishPackages: true # In UWP we don't produce packages
 
               UAP_x86_Release:
                 _BuildConfig: Release
                 _architecture: x86
                 _framework: uap
                 _helixQueues: $(uapNetfxQueues)
+                _skipPublishPackages: true # In UWP we don't produce packages
 
               arm64_Release:
                 _BuildConfig: Release
@@ -181,6 +183,7 @@ stages:
                   _BuildConfig: Release
                   _architecture: arm
                   _framework: uap
+                  _skipPublishPackages: true # In UWP we don't produce packages
 
             pool:
               name: Hosted VS2017