Run larger set of helix tests on non PR builds (#16856)
This commit is contained in:
parent
7202634cea
commit
efca6093ba
|
|
@ -570,6 +570,7 @@ stages:
|
||||||
# Helix x64
|
# Helix x64
|
||||||
- template: jobs/default-build.yml
|
- template: jobs/default-build.yml
|
||||||
parameters:
|
parameters:
|
||||||
|
condition: eq(variables['Build.Reason'], 'PullRequest')
|
||||||
jobName: Helix_x64
|
jobName: Helix_x64
|
||||||
jobDisplayName: 'Tests: Helix x64'
|
jobDisplayName: 'Tests: Helix x64'
|
||||||
agentOs: Windows
|
agentOs: Windows
|
||||||
|
|
@ -585,6 +586,49 @@ stages:
|
||||||
- name: Helix_logs
|
- name: Helix_logs
|
||||||
path: artifacts/log/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
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
|
# Source build
|
||||||
- job: Source_Build
|
- job: Source_Build
|
||||||
|
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue