Skip to content

Commit cadcc67

Browse files
authored
add Azure HPU agent (#12258)
1 parent f325307 commit cadcc67

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.azure-pipelines/hpu-tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Pipeline to run the HPU tests in DL1 Instance
2+
3+
trigger:
4+
tags:
5+
include:
6+
- '*'
7+
branches:
8+
include:
9+
- "master"
10+
- "release/*"
11+
- "refs/tags/*"
12+
pr:
13+
- "master"
14+
- "release/*"
15+
16+
jobs:
17+
- job: hpu
18+
19+
# how long to run the job before automatically cancelling
20+
timeoutInMinutes: "5"
21+
# how much time to give 'run always even if cancelled tasks' before stopping them
22+
cancelTimeoutInMinutes: "2"
23+
24+
pool: intel-hpus
25+
26+
workspace:
27+
clean: all
28+
29+
steps:
30+
- bash: |
31+
hwinfo --short
32+
displayName: 'Instance HW info'

0 commit comments

Comments
 (0)