File tree 1 file changed +5
-10
lines changed
1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -17,37 +17,32 @@ jobs:
17
17
uses : ./.github/workflows/stubs.yml
18
18
19
19
ubuntu :
20
- if : github.event.pull_request.draft == false
20
+ if : always() && !contains(needs.*.result, 'failure') && github.event.pull_request.draft == false
21
21
name : 🐧 Ubuntu
22
22
needs : [stubs]
23
23
uses : ./.github/workflows/ubuntu.yml
24
24
25
25
intel :
26
- if : github.event.pull_request.draft == false
27
26
name : 🐧 Intel
28
- needs : [stubs ]
27
+ needs : [ubuntu ]
29
28
uses : ./.github/workflows/intel.yml
30
29
31
30
hip :
32
- if : github.event.pull_request.draft == false
33
31
name : 🐧 HIP
34
- needs : [stubs ]
32
+ needs : [ubuntu ]
35
33
uses : ./.github/workflows/hip.yml
36
34
37
35
macos :
38
- if : github.event.pull_request.draft == false
39
36
name : 🍏 macOS
40
- needs : [stubs ]
37
+ needs : [ubuntu ]
41
38
uses : ./.github/workflows/macos.yml
42
39
43
40
windows :
44
- if : github.event.pull_request.draft == false
45
41
name : 🪟 Windows
46
- needs : [stubs ]
42
+ needs : [ubuntu ]
47
43
uses : ./.github/workflows/windows.yml
48
44
49
45
codeql :
50
- if : github.event.pull_request.draft == false
51
46
name : 🔎 CodeQL
52
47
needs : [ubuntu]
53
48
permissions :
You can’t perform that action at this time.
0 commit comments