Explorar o código

Run larger set of helix tests on non PR builds (#16856)

Hao Kung %!s(int64=6) %!d(string=hai) anos
pai
achega
efca6093ba
Modificáronse 2 ficheiros con 44 adicións e 45 borrados
  1. 44 0
      .azure/pipelines/ci.yml
  2. 0 45
      .azure/pipelines/helix-daily.yml

+ 44 - 0
.azure/pipelines/ci.yml

@@ -570,6 +570,7 @@ stages:
 # Helix x64
   - template: jobs/default-build.yml
     parameters:
+      condition: eq(variables['Build.Reason'], 'PullRequest')
       jobName: Helix_x64
       jobDisplayName: 'Tests: Helix x64'
       agentOs: Windows
@@ -585,6 +586,49 @@ stages:
       - name: Helix_logs
         path: artifacts/log/
         publishOnError: true
+        includeForks: true
+      
+  - template: jobs/default-build.yml
+    parameters:
+      condition: ne(variables['Build.Reason'], 'PullRequest')
+      jobName: Helix_x64_daily
+      jobDisplayName: 'Tests: Helix x64 Daily'
+      agentOs: Windows
+      timeoutInMinutes: 180
+      steps:
+      - script: .\restore.cmd -ci
+        displayName: Restore
+      - script: .\build.cmd -ci -NoRestore -test -projects eng\helix\helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true -bl
+        displayName: Run build.cmd helix target
+        env:
+          SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
+      artifacts:
+      - name: Helix_logs
+        path: artifacts/log/
+        publishOnError: true
+        includeForks: true
+
+  # Helix ARM64
+  - template: jobs/default-build.yml
+    parameters:
+      condition: ne(variables['Build.Reason'], 'PullRequest')
+      jobName: Helix_arm64_daily
+      jobDisplayName: "Tests: Helix ARM64 Daily"
+      agentOs: Linux
+      timeoutInMinutes: 180
+      steps:
+      - script: ./restore.sh -ci
+        displayName: Restore
+      - script: ./build.sh -ci --arch arm64 -test --no-build-nodejs -projects $(Build.SourcesDirectory)/eng/helix/helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true -bl
+        displayName: Run build.sh helix arm64 target
+        env:
+          SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
+      installNodeJs: false
+      artifacts:
+      - name: Helix_arm64_logs
+        path: artifacts/log/
+        publishOnError: true
+        includeForks: true
       
   # Source build
   - job: Source_Build

+ 0 - 45
.azure/pipelines/helix-daily.yml

@@ -1,45 +0,0 @@
-# Uses Scheduled Triggers, which aren't supported in YAML yet.
-# https://docs.microsoft.com/en-us/azure/devops/pipelines/build/triggers?view=vsts&tabs=yaml#scheduled
-
-# Daily Helix Tests for ASP.NET Core
-
-jobs:
-- template: jobs/default-build.yml
-  parameters:
-    jobName: Helix_x64_daily
-    jobDisplayName: 'Tests: Helix x64 Daily'
-    agentOs: Windows
-    timeoutInMinutes: 240
-    steps:
-    - script: .\restore.cmd -ci
-      displayName: Restore
-    - script: .\build.cmd -ci -NoRestore -test -projects eng\helix\helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true -bl
-      displayName: Run build.cmd helix target
-      env:
-        SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
-    artifacts:
-    - name: Helix_logs
-      path: artifacts/log/
-      publishOnError: true
-
-# Helix ARM64
-- template: jobs/default-build.yml
-  parameters:
-    jobName: Helix_arm64_daily
-    jobDisplayName: "Tests: Helix ARM64 Daily"
-    agentOs: Linux
-    timeoutInMinutes: 180
-    steps:
-    - script: ./restore.sh -ci
-      displayName: Restore
-    - script: ./build.sh -ci --arch arm64 -test --no-build-nodejs -projects $(Build.SourcesDirectory)/eng/helix/helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true -bl
-      displayName: Run build.sh helix arm64 target
-      env:
-        SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
-    installNodeJs: false
-    artifacts:
-    - name: Helix_arm64_logs
-      path: artifacts/log/
-      publishOnError: true
-      includeForks: true
-