From 3ef082e5e46d99f61f9685237c1a77b320e28e4d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 27 Sep 2021 23:27:22 +0000
Subject: [PATCH] [release/6.0] Test in manual internal builds (#36483)

- backport of #36424 to release/6.0
- make it a bit easier to test _everything_ in one go
- builds site extensions, publishes to BAR, and runs all aspnetcore-ci tests

Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com>
---
 .azure/pipelines/ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml
index 31fe503a5ee..3db2fa8615b 100644
--- a/.azure/pipelines/ci.yml
+++ b/.azure/pipelines/ci.yml
@@ -119,7 +119,7 @@ stages:
   displayName: Build
   jobs:
   # Code check
-  - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
+  - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest'), in(variables['Build.Reason'], 'Manual')) }}:
     - template: jobs/default-build.yml
       parameters:
         jobName: Code_check
@@ -642,7 +642,7 @@ stages:
       parameters:
         inputName: Linux_musl_arm64
 
-  - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
+  - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest'), in(variables['Build.Reason'], 'Manual')) }}:
     # Test jobs
     - template: jobs/default-build.yml
       parameters:
-- 
GitLab