-
Notifications
You must be signed in to change notification settings - Fork 0
238 lines (216 loc) · 6.98 KB
/
docker-images.yml
File metadata and controls
238 lines (216 loc) · 6.98 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
name: Build Docker Images
on:
push:
branches:
- master
- develop
paths:
- '.docker/**'
- 'scripts/build_*.sh'
- 'third_party/arrow'
- 'third_party/orc'
- 'third_party/lance-ffi'
- '.github/workflows/docker-images.yml'
workflow_dispatch:
inputs:
image:
description: 'Which image to build'
required: true
type: choice
options:
- all
- base
- orc
- lance
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 }}
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'
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