-
Notifications
You must be signed in to change notification settings - Fork 20
227 lines (212 loc) · 7.14 KB
/
merge.pr.yml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
name: Build docker images
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: build-docker-images-on-${{ github.event_name }}-from-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build-and-publish-devel-main-image:
name: Build and publish devel main image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
image: devel-main
file: dev/dockerfiles/devel/main.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
files-to-diff: |
modules
build-args: |
"UCX_VERSION=1.12.1"
build-and-publish-devel-packages-image:
name: Build devel packages image
needs:
- build-and-publish-devel-main-image
uses: ./.github/workflows/build-and-push-image-ssh.yml
secrets: inherit
with:
from_: devel-main
image: devel-packages
file: dev/dockerfiles/devel/package.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
files-to-diff: |
modules
dev/dockerfiles/devel/main.Dockerfile
build-args: |
"CUDAARCHS=ALL"
"SCCACHE_IDLE_TIMEOUT=32768"
"SCCACHE_REGION=us-west-2"
"SCCACHE_BUCKET=node-rapids-sccache"
build-and-publish-runtime-cuda-base-image:
name: Build runtime cuda-base image
needs:
- build-and-publish-devel-main-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
image: runtime-base
devel: devel-main
file: dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
"UID=1000"
build-and-publish-runtime-cudf-image:
name: Build runtime cudf image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-cudf
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/cudf.Dockerfile
files-to-diff: |
modules/(core|rmm|cuda|cudf)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-and-publish-runtime-cuml-image:
name: Build runtime cuml image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-cuml
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/cuml.Dockerfile
files-to-diff: |
modules/(core|rmm|cuda|cudf|cuml)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-and-publish-runtime-cugraph-image:
name: Build runtime cugraph image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-cugraph
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/cugraph.Dockerfile
files-to-diff: |
modules/(core|rmm|cuda|cudf|cugraph)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-and-publish-runtime-cuspatial-image:
name: Build runtime cuspatial image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-cuspatial
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/cuspatial.Dockerfile
files-to-diff: |
modules/(core|rmm|cuda|cudf|cuspatial)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-and-publish-runtime-glfw-image:
name: Build runtime glfw image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-glfw
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/glfw.Dockerfile
files-to-diff: |
modules/(core|glfw|webgl)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-and-publish-runtime-sql-image:
name: Build runtime sql image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-sql
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/sql.Dockerfile
files-to-diff: |
modules/(core|rmm|cuda|cudf|sql)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
"UCX_VERSION=1.12.1"
build-and-publish-runtime-main-image:
name: Build runtime main image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-main
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/main.Dockerfile
files-to-diff: |
modules/(core|cuda|glfw|webgl|rmm|cudf|sql|cuml|cugraph|cuspatial|deck.gl|jsdom)
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
"UCX_VERSION=1.12.1"
build-and-publish-runtime-demo-image:
name: Build runtime demo image
needs:
- build-and-publish-devel-packages-image
- build-and-publish-runtime-cuda-base-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-base
image: runtime-demo
build: devel-packages
devel: devel-main
file: dev/dockerfiles/runtime/demo.Dockerfile
files-to-diff: |
modules/demo
dev/dockerfiles/runtime/base.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}
build-args: |
"UCX_VERSION=1.12.1"
build-and-publish-runtime-notebook-image:
name: Build runtime notebook image
needs:
- build-and-publish-runtime-demo-image
uses: ./.github/workflows/build-and-push-image.yml
secrets: inherit
with:
from_: runtime-demo
image: runtime-notebook
file: dev/dockerfiles/runtime/notebook.Dockerfile
files-to-diff: |
**/*.ipynb
modules/demo
dev/dockerfiles/runtime/base.Dockerfile
dev/dockerfiles/runtime/demo.Dockerfile
manual-build: ${{ github.event_name == 'workflow_dispatch' }}