From 06b4b73a5a4e3a6b3fa8e4937332c0fbf650f6d2 Mon Sep 17 00:00:00 2001 From: Kenny Guo Date: Tue, 27 Jul 2021 11:44:29 +0800 Subject: [PATCH] Remove the test pipeline yaml --- .../azure-pipelines.release.test.yaml | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 build/pipelines/azure-pipelines.release.test.yaml diff --git a/build/pipelines/azure-pipelines.release.test.yaml b/build/pipelines/azure-pipelines.release.test.yaml deleted file mode 100644 index ca512393..00000000 --- a/build/pipelines/azure-pipelines.release.test.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# -# Release -# This pipeline builds a version of the app in a production configuration to be released to the -# Store and the Windows image. This pipeline relies on Microsoft-internal resources to run. -# - -trigger: -- master -- release/* -- feature/* -pr: none - -name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0 - -jobs: -- template: ./templates/build-app-internal.yaml - parameters: - platform: x64 - isPublicRelease: true - -- template: ./templates/build-app-internal.yaml - parameters: - platform: x86 - isPublicRelease: true - condition: not(eq(variables['Build.Reason'], 'PullRequest')) - -- template: ./templates/build-app-internal.yaml - parameters: - platform: ARM - isPublicRelease: true - condition: not(eq(variables['Build.Reason'], 'PullRequest')) - -- template: ./templates/run-unit-tests.yaml - parameters: - platform: x64 - -- template: ./templates/run-unit-tests.yaml - parameters: - platform: x86 - -- template: ./templates/package-appxbundle.yaml