Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit 1ad49b7

Browse files
committed
deps
1 parent 116b21f commit 1ad49b7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.azure/cuda-template.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jobs:
22

3-
- job: check_diff
3+
- job: check_cuda_diff
44
pool:
55
vmImage: 'Ubuntu-20.04'
66
steps:
@@ -24,10 +24,10 @@ jobs:
2424
- ${{ each config in parameters.configs }}:
2525
- job:
2626
displayName: ${{config}}
27-
dependsOn: check_diff
27+
dependsOn: check_cuda_diff
2828
variables:
2929
# map the output variable from A into this job
30-
configs: $[ dependencies.check_diff.outputs['files.diff'] ]
30+
configs: $[ dependencies.check_cuda_diff.outputs['files.diff'] ]
3131
config: "${{ config }}"
3232
DEVICES: $( python -c 'name = "$(Agent.Name)" ; gpus = name.split("_")[-1] if "_" in name else "0"; print(gpus)' )
3333

.azure/habana-template.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jobs:
22

3-
- job: check_diff
3+
- job: check_habana_diff
44
pool:
55
vmImage: 'Ubuntu-20.04'
66
steps:
@@ -24,10 +24,10 @@ jobs:
2424
- ${{ each config in parameters.configs }}:
2525
- job:
2626
displayName: ${{config}}
27-
dependsOn: check_diff
27+
dependsOn: check_habana_diff
2828
variables:
2929
# map the output variable from A into this job
30-
configs: $[ dependencies.check_diff.outputs['files.diff'] ]
30+
configs: $[ dependencies.check_habana_diff.outputs['files.diff'] ]
3131
config: "${{ config }}"
3232

3333
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), contains(variables['configs'], variables['config']))

0 commit comments

Comments
 (0)