From a1e56d985fe9da663b1fd0f3d9dabdb0b46c0077 Mon Sep 17 00:00:00 2001 From: William Godbe Date: Fri, 29 Mar 2024 11:37:01 -0700 Subject: [PATCH] Fix post-build (#528) * Fix @self * Fix post-build --- azure-pipelines-internal.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/azure-pipelines-internal.yml b/azure-pipelines-internal.yml index 5963ea2b..991f28f4 100644 --- a/azure-pipelines-internal.yml +++ b/azure-pipelines-internal.yml @@ -52,18 +52,15 @@ extends: jobs: - template: /eng/templates/default-build.yml@self - ${{ if notin(variables['Build.Reason'], 'PullRequest') }}: - - stage: post-build - displayName: Post-build - jobs: - - template: /eng/common/templates-official/post-build/post-build.yml@self - parameters: - publishingInfraVersion: 3 - # Symbol validation isn't being very reliable lately. This should be enabled back - # once this issue is resolved: https://github.com/dotnet/arcade/issues/2871 - enableSymbolValidation: false - # It's a private repo in github so this won't pass until we create an internal mirror - enableSourceLinkValidation: false - enableSigningValidation: false - enableNugetValidation: false - SDLValidationParameters: - enable: false \ No newline at end of file + - template: /eng/common/templates-official/post-build/post-build.yml@self + parameters: + publishingInfraVersion: 3 + # Symbol validation isn't being very reliable lately. This should be enabled back + # once this issue is resolved: https://github.com/dotnet/arcade/issues/2871 + enableSymbolValidation: false + # It's a private repo in github so this won't pass until we create an internal mirror + enableSourceLinkValidation: false + enableSigningValidation: false + enableNugetValidation: false + SDLValidationParameters: + enable: false \ No newline at end of file