-
Notifications
You must be signed in to change notification settings - Fork 0
318 lines (290 loc) · 9.59 KB
/
docker-images.yml
File metadata and controls
318 lines (290 loc) · 9.59 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
name: Build Docker Images
on:
push:
branches:
- master
- develop
paths:
- '.docker/**'
- 'scripts/build_*.sh'
- 'third_party/arrow'
- 'third_party/orc'
- 'third_party/lance-ffi'
- 'third_party/lance'
- 'cmake/gen_dists.py'
- 'CMakeLists.txt'
- 'src/**'
- 'include/**'
- '.github/workflows/docker-images.yml'
workflow_dispatch:
inputs:
image:
description: 'Which image to build'
required: true
type: choice
options:
- all
- base
- orc
- lance
- all-formats
env:
REGISTRY: ghcr.io
IMAGE_PREFIX: ghcr.io/${{ github.repository_owner }}/tpch-cpp
jobs:
check-changes:
name: Check Changed Files
runs-on: ubuntu-22.04
if: github.event_name == 'push'
outputs:
base: ${{ steps.filter.outputs.base }}
orc: ${{ steps.filter.outputs.orc }}
lance: ${{ steps.filter.outputs.lance }}
all-formats: ${{ steps.filter.outputs.all-formats }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check changed files
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
base:
- '.docker/Dockerfile.base'
- 'scripts/build_arrow_from_source.sh'
- 'third_party/arrow/**'
- 'third_party/xsimd/**'
- '.github/workflows/docker-images.yml'
orc:
- '.docker/Dockerfile.orc'
- '.docker/Dockerfile.base'
- 'scripts/build_orc_from_source.sh'
- 'third_party/orc/**'
- '.github/workflows/docker-images.yml'
lance:
- '.docker/Dockerfile.lance'
- '.docker/Dockerfile.base'
- 'third_party/lance-ffi/**'
- 'third_party/lance/**'
- '.github/workflows/docker-images.yml'
all-formats:
- '.docker/Dockerfile.all'
- 'third_party/arrow/**'
- 'third_party/orc/**'
- 'third_party/lance-ffi/**'
- 'third_party/lance/**'
- 'cmake/gen_dists.py'
- 'CMakeLists.txt'
- 'src/**'
- 'include/**'
- '.github/workflows/docker-images.yml'
build-base:
name: Build Base Image
runs-on: ubuntu-22.04
needs: [check-changes]
if: |
always() &&
!cancelled() &&
(needs.check-changes.result == 'skipped' || needs.check-changes.outputs.base == 'true' ||
github.event.inputs.image == 'all' ||
github.event.inputs.image == 'base')
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_PREFIX }}-base
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=sha,prefix={{branch}}-
- name: Build and push base image
uses: docker/build-push-action@v5
with:
context: .
file: .docker/Dockerfile.base
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-base:buildcache
type=gha
cache-to: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-base:buildcache,mode=max
type=gha,mode=max
build-orc:
name: Build ORC Image
runs-on: ubuntu-22.04
needs: [check-changes, build-base]
if: |
always() &&
!cancelled() &&
(needs.check-changes.result == 'skipped' || needs.check-changes.outputs.orc == 'true' ||
github.event.inputs.image == 'all' ||
github.event.inputs.image == 'orc') &&
(needs.build-base.result == 'success' || needs.build-base.result == 'skipped')
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_PREFIX }}-orc
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=sha,prefix={{branch}}-
- name: Build and push ORC image
uses: docker/build-push-action@v5
with:
context: .
file: .docker/Dockerfile.orc
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-orc:buildcache
type=registry,ref=${{ env.IMAGE_PREFIX }}-base:buildcache
type=gha
cache-to: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-orc:buildcache,mode=max
type=gha,mode=max
build-lance:
name: Build Lance Image
runs-on: ubuntu-22.04
needs: [check-changes, build-base]
if: |
always() &&
!cancelled() &&
(needs.check-changes.result == 'skipped' || needs.check-changes.outputs.lance == 'true' ||
github.event.inputs.image == 'all' ||
github.event.inputs.image == 'lance') &&
(needs.build-base.result == 'success' || needs.build-base.result == 'skipped')
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_PREFIX }}-lance
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=sha,prefix={{branch}}-
- name: Build and push Lance image
uses: docker/build-push-action@v5
with:
context: .
file: .docker/Dockerfile.lance
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-lance:buildcache
type=registry,ref=${{ env.IMAGE_PREFIX }}-base:buildcache
type=gha
cache-to: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-lance:buildcache,mode=max
type=gha,mode=max
build-all-formats:
name: Build All-Formats Image
runs-on: ubuntu-22.04
needs: [check-changes]
if: |
always() &&
!cancelled() &&
(needs.check-changes.result == 'skipped' ||
needs.check-changes.outputs.all-formats == 'true' ||
github.event.inputs.image == 'all' ||
github.event.inputs.image == 'all-formats')
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_PREFIX }}-all
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=sha,prefix={{branch}}-
- name: Build and push all-formats image
uses: docker/build-push-action@v5
with:
context: .
file: .docker/Dockerfile.all
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# Each named build stage gets its own cache entry so that
# Arrow, ORC, and Rust can be cached independently.
cache-from: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-all:buildcache-deps
type=registry,ref=${{ env.IMAGE_PREFIX }}-all:buildcache-orc
type=registry,ref=${{ env.IMAGE_PREFIX }}-all:buildcache-rust
type=registry,ref=${{ env.IMAGE_PREFIX }}-all:buildcache
type=gha
cache-to: |
type=registry,ref=${{ env.IMAGE_PREFIX }}-all:buildcache,mode=max
type=gha,mode=max