@@ -29,63 +29,74 @@ jobs:
29
29
needs : [FastBuild]
30
30
uses : ./.github/workflows/reusable_basic.yml
31
31
DevDax :
32
+ if : false
32
33
needs : [FastBuild]
33
34
uses : ./.github/workflows/reusable_dax.yml
34
35
MultiNuma :
36
+ if : false
35
37
needs : [FastBuild]
36
38
uses : ./.github/workflows/reusable_multi_numa.yml
37
39
L0 :
40
+ if : false
38
41
needs : [Build]
39
42
uses : ./.github/workflows/reusable_gpu.yml
40
43
with :
41
44
name : " LEVEL_ZERO"
42
45
shared_lib : " ['ON']"
43
46
CUDA :
47
+ if : false
44
48
needs : [Build]
45
49
uses : ./.github/workflows/reusable_gpu.yml
46
50
with :
47
51
name : " CUDA"
48
52
shared_lib : " ['ON']"
49
53
Sanitizers :
54
+ if : false
50
55
needs : [FastBuild]
51
56
uses : ./.github/workflows/reusable_sanitizers.yml
52
57
QEMU :
58
+ if : false
53
59
needs : [FastBuild]
54
60
uses : ./.github/workflows/reusable_qemu.yml
55
61
with :
56
62
short_run : true
57
63
ProxyLib :
64
+ if : false
58
65
needs : [Build]
59
66
uses : ./.github/workflows/reusable_proxy_lib.yml
60
67
Valgrind :
68
+ if : false
61
69
needs : [Build]
62
70
uses : ./.github/workflows/reusable_valgrind.yml
63
71
Coverage :
64
72
# total coverage (on upstream only)
65
- if : github.repository == 'oneapi-src/unified-memory-framework'
73
+ if : github.repository == 'oneapi-src/unified-memory-framework' && false
66
74
needs : [Build, DevDax, L0, CUDA, MultiNuma, QEMU, ProxyLib]
67
75
uses : ./.github/workflows/reusable_coverage.yml
68
76
secrets : inherit
69
77
with :
70
78
trigger : " ${{github.event_name}}"
71
79
Coverage_partial :
72
80
# partial coverage (on forks)
73
- if : github.repository != 'oneapi-src/unified-memory-framework'
81
+ if : github.repository != 'oneapi-src/unified-memory-framework' && false
74
82
needs : [Build, QEMU, ProxyLib]
75
83
uses : ./.github/workflows/reusable_coverage.yml
76
84
CodeQL :
85
+ if : false
77
86
needs : [Build]
78
87
permissions :
79
88
contents : read
80
89
security-events : write
81
90
uses : ./.github/workflows/reusable_codeql.yml
82
91
Trivy :
92
+ if : false
83
93
needs : [Build]
84
94
permissions :
85
95
contents : read
86
96
security-events : write
87
97
uses : ./.github/workflows/reusable_trivy.yml
88
98
Compatibility :
99
+ if : false
89
100
needs : [Build]
90
101
uses : ./.github/workflows/reusable_compatibility.yml
91
102
strategy :
0 commit comments