-
Notifications
You must be signed in to change notification settings - Fork 88
319 lines (292 loc) · 11.4 KB
/
docker-build.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
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
319
name: Build Docker Images
on:
push:
tags:
- "*.*.*"
branches:
- main
pull_request:
paths:
- "Dockerfile*"
- "docker/**"
- "dockerV2/**"
- ".github/workflows/docker-build.yml"
- "requirements-all.txt"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
split-build:
name: "Build split Docker images" # Do not rename without updating workflow defined in publish.yml
runs-on: ubuntu-latest
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 1024
swap-size-mb: 20000
overprovision-lvm: 'true'
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-docker-images: 'true'
remove-codeql: 'true'
- name: Check out repository
uses: actions/checkout@v4
- name: Check free space before build
run: |
echo "Free space:"
df -h
- name: Get short commit SHA
id: sha
run: echo "short=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT
- name: Set build platforms
id: platform
run: |
GITHUB_REF="${{ github.ref }}"
GITHUB_TAG=${GITHUB_REF##*/}
if [ "${{ github.ref_type }}" = tag ]; then
echo "targets=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
echo "uitag=latest" >> $GITHUB_OUTPUT
if [[ "$GITHUB_TAG" =~ [0-9]([ab]|rc)[0-9]* ]]; then
echo "latest=false" >> $GITHUB_OUTPUT
else
echo "latest=true" >> $GITHUB_OUTPUT
fi
else
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "targets=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
else
echo "targets=linux/amd64" >> $GITHUB_OUTPUT
fi
echo "uitag=edge" >> $GITHUB_OUTPUT
echo "latest=false" >> $GITHUB_OUTPUT
fi
- name: Check short commit SHA and build targets
run: |
echo ${{ steps.sha.outputs.short }}
echo ${{ steps.platform.outputs.targets }}
echo ${{ steps.platform.outputs.uitag }}
echo ${{ steps.platform.outputs.latest }}
- name: Docker fixinventorybase meta
id: basemeta
uses: docker/metadata-action@v4
with:
images: |
someengineering/fixinventorybase
ghcr.io/someengineering/fixinventorybase
flavor: |
latest=${{ steps.platform.outputs.latest }}
tags: |
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=pep440,pattern={{major}}
type=sha,prefix=
type=edge
labels: |
org.opencontainers.image.title=fixinventorybase
org.opencontainers.image.description=Fix Inventory base image
org.opencontainers.image.vendor=Some Engineering Inc.
- name: Docker fixcore meta
if: github.event_name != 'pull_request'
id: coremeta
uses: docker/metadata-action@v4
with:
images: |
someengineering/fixcore
ghcr.io/someengineering/fixcore
flavor: |
latest=${{ steps.platform.outputs.latest }}
tags: |
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=pep440,pattern={{major}}
type=sha,prefix=
type=edge
labels: |
org.opencontainers.image.title=fixcore
org.opencontainers.image.description=Fix Inventory Core
org.opencontainers.image.vendor=Some Engineering Inc.
- name: Docker fixworker meta
if: github.event_name != 'pull_request'
id: workermeta
uses: docker/metadata-action@v4
with:
images: |
someengineering/fixworker
ghcr.io/someengineering/fixworker
flavor: |
latest=${{ steps.platform.outputs.latest }}
tags: |
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=pep440,pattern={{major}}
type=sha,prefix=
type=edge
labels: |
org.opencontainers.image.title=fixworker
org.opencontainers.image.description=Fix Inventory Worker
org.opencontainers.image.vendor=Some Engineering Inc.
- name: Docker fixmetrics meta
if: github.event_name != 'pull_request'
id: metricsmeta
uses: docker/metadata-action@v4
with:
images: |
someengineering/fixmetrics
ghcr.io/someengineering/fixmetrics
flavor: |
latest=${{ steps.platform.outputs.latest }}
tags: |
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=pep440,pattern={{major}}
type=sha,prefix=
type=edge
labels: |
org.opencontainers.image.title=fixmetrics
org.opencontainers.image.description=Fix Inventory Metrics
org.opencontainers.image.vendor=Some Engineering Inc.
- name: Docker fixshell meta
if: github.event_name != 'pull_request'
id: shellmeta
uses: docker/metadata-action@v4
with:
images: |
someengineering/fixshell
someengineering/resh
ghcr.io/someengineering/fixshell
ghcr.io/someengineering/resh
flavor: |
latest=${{ steps.platform.outputs.latest }}
tags: |
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=pep440,pattern={{major}}
type=sha,prefix=
type=edge
labels: |
org.opencontainers.image.title=fixshell
org.opencontainers.image.description=Fix Inventory Shell (fixsh)
org.opencontainers.image.vendor=Some Engineering Inc.
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
with:
platforms: arm64,amd64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Log in to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push fixinventorybase Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile.fixinventorybase
platforms: ${{ steps.platform.outputs.targets }}
push: ${{ github.event_name != 'pull_request' }}
build-args: |
UI_IMAGE_TAG=${{ steps.platform.outputs.uitag }}
SOURCE_COMMIT=${{ github.sha }}
TESTS=false
tags: ${{ steps.basemeta.outputs.tags }}
labels: ${{ steps.basemeta.outputs.labels }}
provenance: false # Temporary workaround for https://github.com/docker/buildx/issues/1533
- name: Build and push fixcore Docker image
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile.fixcore
platforms: ${{ steps.platform.outputs.targets }}
push: ${{ github.event_name != 'pull_request' }}
build-args: |
IMAGE_TAG=${{ steps.sha.outputs.short }}
tags: ${{ steps.coremeta.outputs.tags }}
labels: ${{ steps.coremeta.outputs.labels }}
provenance: false # Temporary workaround for https://github.com/docker/buildx/issues/1533
- name: Build and push fixworker Docker image
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile.fixworker
platforms: ${{ steps.platform.outputs.targets }}
push: ${{ github.event_name != 'pull_request' }}
build-args: |
IMAGE_TAG=${{ steps.sha.outputs.short }}
tags: ${{ steps.workermeta.outputs.tags }}
labels: ${{ steps.workermeta.outputs.labels }}
provenance: false # Temporary workaround for https://github.com/docker/buildx/issues/1533
- name: Build and push fixmetrics Docker image
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile.fixmetrics
platforms: ${{ steps.platform.outputs.targets }}
push: ${{ github.event_name != 'pull_request' }}
build-args: |
IMAGE_TAG=${{ steps.sha.outputs.short }}
tags: ${{ steps.metricsmeta.outputs.tags }}
labels: ${{ steps.metricsmeta.outputs.labels }}
provenance: false # Temporary workaround for https://github.com/docker/buildx/issues/1533
- name: Build and push fixshell Docker image
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile.fixshell
platforms: ${{ steps.platform.outputs.targets }}
push: ${{ github.event_name != 'pull_request' }}
build-args: |
IMAGE_TAG=${{ steps.sha.outputs.short }}
tags: ${{ steps.shellmeta.outputs.tags }}
labels: ${{ steps.shellmeta.outputs.labels }}
provenance: false # Temporary workaround for https://github.com/docker/buildx/issues/1533
- name: Check free space after build
run: |
echo "Free space:"
df -h
- name: Trigger workflow in fix-collect-single
if: github.event_name != 'pull_request'
run: |
curl -X POST \
-H "Authorization: token ${{ secrets.SOME_CI_PAT }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/someengineering/fix-collect-single/actions/workflows/docker_build.yml/dispatches \
-d '{"ref":"main"}'
- name: Authenticate with GitHub CLI
if: github.event_name != 'pull_request'
run: |
gh auth login --with-token <<< "${{ secrets.SOME_CI_PAT }}"
- name: Bump tag version
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.SOME_CI_PAT }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Some CI"
git clone "https://[email protected]/someengineering/setup-infra.git"
git_sha="${{ github.sha }}"
short_sha="${git_sha:0:7}"
echo "Use short SHA: $short_sha"
# update the tag
cd setup-infra
yq eval ".images[] |= select(.name == \"someengineering/fixcore\").newTag |= \"${short_sha}\"" -i argocd/envs/dev/inventory/kustomization.yaml
git add .
git commit -m "Bump fix-inventory on dev to ${short_sha}" || true
git push origin main