FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
unified-memory-framework/.github/workflows/pr_push.yml at main · oneapi-src/unified-memory-framework · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
oneapi-src
/
unified-memory-framework
Public
Notifications
You must be signed in to change notification settings
Fork
48
Star
98
Code
Issues
54
Pull requests
6
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
unified-memory-framework
/
.github
/
workflows
/
pr_push.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
103 lines (99 loc) · 2.6 KB
Breadcrumbs
unified-memory-framework
/
.github
/
workflows
/
pr_push.yml
Copy path
File metadata and controls
103 lines (99 loc) · 2.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#
Run checks required for a PR to merge and verify if post-merge commit is valid.
#
This workflow only call other workflows.
name
:
PR/push
on
:
push
:
branches-ignore
:
-
'
dependabot/**
'
pull_request
:
concurrency
:
group
:
${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress
:
true
permissions
:
contents
:
read
packages
:
read
jobs
:
CodeChecks
:
uses
:
./.github/workflows/reusable_checks.yml
FastBuild
:
name
:
Fast builds
needs
:
[CodeChecks]
uses
:
./.github/workflows/reusable_fast.yml
Build
:
name
:
Basic builds
needs
:
[FastBuild]
uses
:
./.github/workflows/reusable_basic.yml
DevDax
:
needs
:
[FastBuild]
uses
:
./.github/workflows/reusable_dax.yml
MultiNuma
:
needs
:
[FastBuild]
uses
:
./.github/workflows/reusable_multi_numa.yml
L0
:
needs
:
[Build]
uses
:
./.github/workflows/reusable_gpu.yml
with
:
provider
:
"
LEVEL_ZERO
"
runner
:
"
L0
"
shared_lib
:
"
['ON']
"
L0-BMG
:
needs
:
[Build]
uses
:
./.github/workflows/reusable_gpu.yml
with
:
provider
:
"
LEVEL_ZERO
"
runner
:
"
L0-BMG
"
shared_lib
:
"
['ON']
"
CUDA
:
needs
:
[Build]
uses
:
./.github/workflows/reusable_gpu.yml
with
:
provider
:
"
CUDA
"
runner
:
"
CUDA
"
shared_lib
:
"
['ON']
"
Sanitizers
:
needs
:
[FastBuild]
uses
:
./.github/workflows/reusable_sanitizers.yml
QEMU
:
needs
:
[FastBuild]
uses
:
./.github/workflows/reusable_qemu.yml
with
:
short_run
:
true
ProxyLib
:
needs
:
[Build]
uses
:
./.github/workflows/reusable_proxy_lib.yml
Valgrind
:
needs
:
[Build]
uses
:
./.github/workflows/reusable_valgrind.yml
Coverage
:
#
total coverage (on upstream only)
if
:
github.repository == 'oneapi-src/unified-memory-framework'
needs
:
[Build, DevDax, L0, CUDA, MultiNuma, QEMU, ProxyLib]
uses
:
./.github/workflows/reusable_coverage.yml
secrets
:
inherit
with
:
trigger
:
"
${{github.event_name}}
"
Coverage_partial
:
#
partial coverage (on forks)
if
:
github.repository != 'oneapi-src/unified-memory-framework'
needs
:
[Build, QEMU, ProxyLib]
uses
:
./.github/workflows/reusable_coverage.yml
CodeQL
:
needs
:
[Build]
permissions
:
contents
:
read
security-events
:
write
uses
:
./.github/workflows/reusable_codeql.yml
Trivy
:
needs
:
[Build]
permissions
:
contents
:
read
security-events
:
write
uses
:
./.github/workflows/reusable_trivy.yml
Compatibility
:
needs
:
[Build]
uses
:
./.github/workflows/reusable_compatibility.yml
strategy
:
matrix
:
tag
:
["v1.0.1"]
with
:
tag
:
${{matrix.tag}}
Back
|
FazBrowse Home
|
New Git URL