onnxruntime/tools/ci_build/github/azure-pipelines/nodejs/templates/test_linux.yml
Changming Sun 5bfa1183d1
Add a Memory Profiling build job in post merge pipeline (#16172)
### Description
1. Add a Memory Profiling build job
2. Remove no absl build job since the feature will be removed
3. Simplify post-merge-jobs.yml by unifying the pool names

### Motivation and Context
To catch build errors in #16124
2023-06-01 13:00:44 -07:00

21 lines
No EOL
446 B
YAML

parameters:
AgentPool: 'onnxruntime-Ubuntu2004-AMD-CPU'
StageSuffix: ''
stages:
- stage: Nodejs_Test_${{ parameters.StageSuffix }}
dependsOn:
- Nodejs_Packaging_CPU
condition: succeeded()
jobs:
- job:
workspace:
clean: all
timeoutInMinutes: 120
pool: ${{ parameters.AgentPool }}
variables:
- name: OnnxRuntimeBuildDirectory
value: '$(Build.BinariesDirectory)'
steps:
- template: test.yml