We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f325307 commit cadcc67Copy full SHA for cadcc67
.azure-pipelines/hpu-tests.yml
@@ -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
9
+ - "master"
10
+ - "release/*"
11
+ - "refs/tags/*"
12
+pr:
13
14
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