mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description Adding Job names to jobs without a name ### Motivation and Context This way we will know which job fails CG scan.
20 lines
490 B
YAML
20 lines
490 B
YAML
parameters:
|
|
AgentPool: 'Azure-Pipelines-EO-Ubuntu-2004-aiinfra'
|
|
StageSuffix: ''
|
|
stages:
|
|
- stage: Nodejs_Test_${{ parameters.StageSuffix }}
|
|
dependsOn:
|
|
- Nodejs_Packaging
|
|
condition: succeeded()
|
|
jobs:
|
|
- job: Nodejs_Test_${{ parameters.StageSuffix }}
|
|
workspace:
|
|
clean: all
|
|
timeoutInMinutes: 120
|
|
pool: ${{ parameters.AgentPool }}
|
|
|
|
variables:
|
|
- name: OnnxRuntimeBuildDirectory
|
|
value: '$(Build.BinariesDirectory)'
|
|
steps:
|
|
- template: test.yml
|