Skip to content

Commit 7b0b298

Browse files
authored
[Helix] Move helix arm run to ci (#13939)
1 parent 7ebb03b commit 7b0b298

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.azure/pipelines/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,26 @@ jobs:
487487
path: artifacts/TestResults/
488488
publishOnError: true
489489

490+
# Helix ARM64
491+
- template: jobs/default-build.yml
492+
parameters:
493+
jobName: Helix_arm64
494+
jobDisplayName: "Tests: Helix ARM64"
495+
agentOs: Linux
496+
timeoutInMinutes: 240
497+
steps:
498+
- script: ./restore.sh -ci
499+
displayName: Restore
500+
- 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
501+
displayName: Run build.sh helix arm64 target
502+
env:
503+
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
504+
installNodeJs: false
505+
artifacts:
506+
- name: Helix_arm64_logs
507+
path: artifacts/log/
508+
publishOnError: true
509+
490510
# Source build
491511
- job: Source_Build
492512
displayName: 'Test: Linux Source Build'

.azure/pipelines/helix-test.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,3 @@ jobs:
2525
- name: Helix_logs
2626
path: artifacts/log/
2727
publishOnError: true
28-
29-
# Build Helix ARM64
30-
- template: jobs/default-build.yml
31-
parameters:
32-
jobName: Helix_arm64
33-
jobDisplayName: "Tests: Helix ARM64"
34-
agentOs: Linux
35-
timeoutInMinutes: 240
36-
steps:
37-
- script: ./restore.sh -ci
38-
displayName: Restore
39-
- 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
40-
displayName: Run build.sh helix arm64 target
41-
env:
42-
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
43-
installNodeJs: false
44-
artifacts:
45-
- name: Helix_arm64_logs
46-
path: artifacts/log/
47-
publishOnError: true

0 commit comments

Comments
 (0)