File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,20 @@ concurrency:
18
18
cancel-in-progress : true
19
19
20
20
jobs :
21
+ wait-unit-tests :
22
+ runs-on : ubuntu-latest
23
+ permissions :
24
+ checks : read
25
+ steps :
26
+ - name : Wait for Unit tests to pass
27
+
28
+ with :
29
+ token : ${{ secrets.GITHUB_TOKEN }}
30
+ match_pattern : ' Unit tests / linux*'
31
+ interval : 15s
32
+ timeout : 60m
21
33
gpu-tests :
34
+ needs : [wait-unit-tests]
22
35
# Runner list at https://github.com/nv-gha-runners/enterprise-runner-configuration/blob/main/docs/runner-groups.md
23
36
runs-on : linux-amd64-gpu-h100-latest-1
24
37
timeout-minutes : 60
Original file line number Diff line number Diff line change @@ -26,7 +26,21 @@ concurrency:
26
26
cancel-in-progress : true
27
27
28
28
jobs :
29
+ wait-dco :
30
+ runs-on : ubuntu-latest
31
+ permissions :
32
+ checks : read
33
+ steps :
34
+ - name : Wait for DCO check (PRs only)
35
+ if : github.event_name == 'pull_request'
36
+
37
+ with :
38
+ token : ${{ secrets.GITHUB_TOKEN }}
39
+ match_pattern : ' ^DCO$'
40
+ interval : 15s
41
+ timeout : 1m
29
42
linux :
43
+ needs : [wait-dco]
30
44
runs-on : ubuntu-latest
31
45
timeout-minutes : 30
32
46
steps :
You can’t perform that action at this time.
0 commit comments