|
|
@@ -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
|