[Helix] Move helix arm run to ci (#13939)
This commit is contained in:
parent
7ebb03b6e0
commit
7b0b2980dc
|
|
@ -487,6 +487,26 @@ jobs:
|
||||||
path: artifacts/TestResults/
|
path: artifacts/TestResults/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
|
# Helix ARM64
|
||||||
|
- template: jobs/default-build.yml
|
||||||
|
parameters:
|
||||||
|
jobName: Helix_arm64
|
||||||
|
jobDisplayName: "Tests: Helix ARM64"
|
||||||
|
agentOs: Linux
|
||||||
|
timeoutInMinutes: 240
|
||||||
|
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: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
|
||||||
|
|
||||||
# Source build
|
# Source build
|
||||||
- job: Source_Build
|
- job: Source_Build
|
||||||
displayName: 'Test: Linux Source Build'
|
displayName: 'Test: Linux Source Build'
|
||||||
|
|
|
||||||
|
|
@ -25,23 +25,3 @@ jobs:
|
||||||
- name: Helix_logs
|
- name: Helix_logs
|
||||||
path: artifacts/log/
|
path: artifacts/log/
|
||||||
publishOnError: true
|
publishOnError: true
|
||||||
|
|
||||||
# Build Helix ARM64
|
|
||||||
- template: jobs/default-build.yml
|
|
||||||
parameters:
|
|
||||||
jobName: Helix_arm64
|
|
||||||
jobDisplayName: "Tests: Helix ARM64"
|
|
||||||
agentOs: Linux
|
|
||||||
timeoutInMinutes: 240
|
|
||||||
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: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
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue