Skip to content

Commit 3437249

Browse files
authoredJan 28, 2025··
workflows: split container builds per-arch (#9875)
* workflows: split container builds per-arch Signed-off-by: Patrick Stephens <pat@chronosphere.io>
1 parent f5d9a66 commit 3437249

File tree

5 files changed

+184
-63
lines changed

5 files changed

+184
-63
lines changed
 

‎.github/workflows/call-build-images.yaml

+148-60
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ on:
1515
registry:
1616
description: The registry to push container images to.
1717
type: string
18-
required: true
18+
required: false
19+
default: ghcr.io
1920
username:
2021
description: The username for the registry.
2122
type: string
@@ -33,11 +34,6 @@ on:
3334
type: string
3435
required: false
3536
default: ""
36-
platforms:
37-
description: The platforms to build for
38-
type: string
39-
required: false
40-
default: 'linux/amd64, linux/arm64, linux/arm/v7, linux/s390x'
4137
secrets:
4238
token:
4339
description: The Github token or similar to authenticate with for the registry.
@@ -74,25 +70,34 @@ jobs:
7470
replace-with: "$1"
7571
flags: "g"
7672

77-
# This is the intended approach to multi-arch image and all the other checks scanning,
78-
# signing, etc only trigger from this.
79-
call-build-images:
80-
needs:
81-
- call-build-images-meta
82-
name: Multiarch container images to GHCR
83-
runs-on: ubuntu-latest-8-cores
84-
environment: ${{ inputs.environment }}
73+
# Taken from https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
74+
# We split this out to make it easier to restart just one of them if it fails and do all in parallel
75+
call-build-single-arch-container-images:
76+
# Allow us to continue to create a manifest if we want
77+
continue-on-error: true
8578
permissions:
8679
contents: read
8780
packages: write
88-
outputs:
89-
production-digest: ${{ steps.build_push.outputs.digest }}
90-
debug-digest: ${{ steps.debug_build_push.outputs.digest }}
81+
strategy:
82+
fail-fast: false
83+
matrix:
84+
platform:
85+
- amd64
86+
- arm64
87+
- arm/v7
88+
- s390x
89+
target:
90+
- production
91+
- debug
92+
name: ${{ matrix.platform }}/${{ matrix.target }} container image build
93+
# Use GitHub Actions ARM hosted runners
94+
runs-on: ${{ (contains(matrix.platform, 'arm') && 'ubuntu-22.04-arm') || 'ubuntu-latest' }}
9195
steps:
92-
- name: Checkout code for modern style builds
96+
- name: Checkout code
9397
uses: actions/checkout@v4
9498
with:
9599
ref: ${{ inputs.ref }}
100+
token: ${{ secrets.token }}
96101

97102
- name: Set up QEMU
98103
uses: docker/setup-qemu-action@v3
@@ -104,37 +109,108 @@ jobs:
104109
uses: docker/login-action@v3
105110
with:
106111
registry: ${{ inputs.registry }}
107-
username: ${{ inputs.username }}
112+
username: ${{ github.actor }}
108113
password: ${{ secrets.token }}
109114

110-
- name: Extract metadata from Github
111-
id: meta
112-
uses: docker/metadata-action@v5
113-
with:
114-
images: ${{ inputs.registry }}/${{ inputs.image }}
115-
tags: |
116-
raw,${{ inputs.version }}
117-
raw,${{ needs.call-build-images-meta.outputs.major-version }}
118-
raw,latest
119-
120-
- name: Build the production images
121-
id: build_push
115+
- name: Build and push by digest the standard ${{ matrix.target }} image
116+
id: build
122117
uses: docker/build-push-action@v6
123118
with:
119+
# Use path context rather than Git context as we want local files
124120
file: ./dockerfiles/Dockerfile
125121
context: .
126-
tags: ${{ steps.meta.outputs.tags }}
127-
labels: ${{ steps.meta.outputs.labels }}
128-
platforms: ${{ inputs.platforms }}
129-
target: production
122+
target: ${{ matrix.target }}
123+
outputs: type=image,name=${{ inputs.registry }}/${{ inputs.image }},push-by-digest=true,name-canonical=true,push=true
124+
platforms: linux/${{ matrix.platform }}
130125
# Must be disabled to provide legacy format images from the registry
131126
provenance: false
132127
push: true
133128
load: false
134129
build-args: |
135130
FLB_NIGHTLY_BUILD=${{ inputs.unstable }}
136131
RELEASE_VERSION=${{ inputs.version }}
132+
WAMR_BUILD_TARGET=${{ (contains(matrix.platform, 'arm/v7') && 'ARMV7') || '' }}
133+
134+
- name: Export ${{ matrix.target }} digest
135+
run: |
136+
mkdir -p /tmp/digests
137+
digest="${{ steps.build.outputs.digest }}"
138+
touch "/tmp/digests/${digest#sha256:}"
139+
shell: bash
140+
141+
- name: Upload ${{ matrix.target }} digest
142+
uses: actions/upload-artifact@v4
143+
with:
144+
name: ${{ matrix.target }}-digests-${{ (contains(matrix.platform, 'arm/v7') && 'arm-v7') || matrix.platform }}
145+
path: /tmp/digests/*
146+
if-no-files-found: error
147+
retention-days: 1
148+
149+
# Take the digests and produce a multi-arch manifest from them.
150+
call-build-container-image-manifests:
151+
permissions:
152+
contents: read
153+
packages: write
154+
name: Upload multi-arch container image manifests
155+
runs-on: ubuntu-latest
156+
needs:
157+
- call-build-images-meta
158+
- call-build-single-arch-container-images
159+
outputs:
160+
version: ${{ steps.meta.outputs.version }}
161+
steps:
162+
- name: Extract metadata from Github
163+
id: meta
164+
uses: docker/metadata-action@v5
165+
with:
166+
images: ${{ inputs.registry }}/${{ inputs.image }}
167+
tags: |
168+
raw,${{ inputs.version }}
169+
raw,${{ needs.call-build-images-meta.outputs.major-version }}
170+
raw,latest
171+
172+
- name: Download production digests
173+
uses: actions/download-artifact@v4
174+
with:
175+
pattern: production-digests-*
176+
path: /tmp/production-digests
177+
merge-multiple: true
178+
179+
- name: Set up Docker Buildx
180+
uses: docker/setup-buildx-action@v3
181+
182+
- name: Log in to the Container registry
183+
uses: docker/login-action@v3
184+
with:
185+
registry: ${{ inputs.registry }}
186+
username: ${{ github.actor }}
187+
password: ${{ secrets.token }}
188+
189+
- name: Create production manifest
190+
run: |
191+
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
192+
$(printf '${{ inputs.registry }}/${{ inputs.image }}@sha256:%s ' *)
193+
shell: bash
194+
working-directory: /tmp/production-digests
137195

196+
- name: Inspect image
197+
run: |
198+
docker buildx imagetools inspect ${{ inputs.registry }}/${{ inputs.image }}:${{ steps.meta.outputs.version }}
199+
shell: bash
200+
201+
# Take the digests and produce a multi-arch manifest from them.
202+
call-build-debug-container-image-manifests:
203+
permissions:
204+
contents: read
205+
packages: write
206+
name: Upload debug multi-arch container image manifests
207+
runs-on: ubuntu-latest
208+
needs:
209+
- call-build-images-meta
210+
- call-build-single-arch-container-images
211+
outputs:
212+
version: ${{ steps.debug-meta.outputs.version }}
213+
steps:
138214
- id: debug-meta
139215
uses: docker/metadata-action@v5
140216
with:
@@ -144,28 +220,39 @@ jobs:
144220
raw,${{ needs.call-build-images-meta.outputs.major-version }}-debug
145221
raw,latest-debug
146222
147-
- name: Build the debug multi-arch images
148-
id: debug_build_push
149-
uses: docker/build-push-action@v6
223+
- name: Download debug digests
224+
uses: actions/download-artifact@v4
150225
with:
151-
file: ./dockerfiles/Dockerfile
152-
context: .
153-
tags: ${{ steps.debug-meta.outputs.tags }}
154-
labels: ${{ steps.debug-meta.outputs.labels }}
155-
platforms: ${{ inputs.platforms }}
156-
# Must be disabled to provide legacy format images from the registry
157-
provenance: false
158-
target: debug
159-
push: true
160-
load: false
161-
build-args: |
162-
FLB_NIGHTLY_BUILD=${{ inputs.unstable }}
163-
RELEASE_VERSION=${{ inputs.version }}
226+
pattern: debug-digests-*
227+
path: /tmp/debug-digests
228+
merge-multiple: true
229+
230+
- name: Set up Docker Buildx
231+
uses: docker/setup-buildx-action@v3
232+
233+
- name: Log in to the Container registry
234+
uses: docker/login-action@v3
235+
with:
236+
registry: ${{ inputs.registry }}
237+
username: ${{ github.actor }}
238+
password: ${{ secrets.token }}
239+
240+
- name: Create debug manifest
241+
run: |
242+
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
243+
$(printf '${{ inputs.registry }}/${{ inputs.image }}@sha256:%s ' *)
244+
shell: bash
245+
working-directory: /tmp/debug-digests
246+
247+
- name: Inspect image
248+
run: |
249+
docker buildx imagetools inspect ${{ inputs.registry }}/${{ inputs.image }}:${{ steps.debug-meta.outputs.version }}
250+
shell: bash
164251

165252
call-build-images-generate-schema:
166253
needs:
167254
- call-build-images-meta
168-
- call-build-images
255+
- call-build-container-image-manifests
169256
runs-on: ubuntu-latest
170257
environment: ${{ inputs.environment }}
171258
permissions:
@@ -195,7 +282,7 @@ jobs:
195282
call-build-images-scan:
196283
needs:
197284
- call-build-images-meta
198-
- call-build-images
285+
- call-build-container-image-manifests
199286
name: Trivy + Dockle image scan
200287
runs-on: ubuntu-latest
201288
environment: ${{ inputs.environment }}
@@ -230,7 +317,8 @@ jobs:
230317
call-build-images-sign:
231318
needs:
232319
- call-build-images-meta
233-
- call-build-images
320+
- call-build-container-image-manifests
321+
- call-build-debug-container-image-manifests
234322
name: Deploy and sign multi-arch container image manifests
235323
permissions:
236324
contents: read
@@ -251,13 +339,13 @@ jobs:
251339
#
252340
# We use recursive signing on the manifest to cover all the images.
253341
run: |
254-
cosign sign --recursive \
342+
cosign sign --recursive --force \
255343
-a "repo=${{ github.repository }}" \
256344
-a "workflow=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
257345
-a "ref=${{ github.sha }}" \
258346
-a "release=${{ inputs.version }}" \
259-
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-images.outputs.production-digest }}" \
260-
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-images.outputs.debug-digest }}"
347+
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-container-image-manifests.outputs.version }}" \
348+
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-debug-container-image-manifests.outputs.version }}"
261349
shell: bash
262350
# Ensure we move on to key-based signing as well
263351
continue-on-error: true
@@ -270,13 +358,13 @@ jobs:
270358
# The key needs to cope with newlines
271359
run: |
272360
echo -e "${COSIGN_PRIVATE_KEY}" > /tmp/my_cosign.key
273-
cosign sign --key /tmp/my_cosign.key --recursive \
361+
cosign sign --key /tmp/my_cosign.key --recursive --force \
274362
-a "repo=${{ github.repository }}" \
275363
-a "workflow=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
276364
-a "ref=${{ github.sha }}" \
277365
-a "release=${{ inputs.version }}" \
278-
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-images.outputs.production-digest }}" \
279-
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-images.outputs.debug-digest }}"
366+
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-container-image-manifests.outputs.version }}" \
367+
"${{ inputs.registry }}/${{ inputs.image }}@${{ needs.call-build-debug-container-image-manifests.outputs.version }}"
280368
rm -f /tmp/my_cosign.key
281369
shell: bash
282370
continue-on-error: true

‎.github/workflows/pr-package-tests.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,24 @@ jobs:
3434
- name: Debug event output
3535
uses: hmarr/debug-action@v3
3636

37+
pr-container-builds:
38+
name: PR - container builds
39+
needs:
40+
- pr-package-test-build-get-meta
41+
- pr-package-test-build-generate-matrix
42+
uses: ./.github/workflows/call-build-images.yaml
43+
with:
44+
version: pr-${{ github.event.number }}
45+
ref: ${{ github.ref }}
46+
registry: ghcr.io
47+
username: ${{ github.actor }}
48+
image: ${{ github.repository }}/pr
49+
unstable: ${{ needs.pr-package-test-build-get-meta.outputs.date }}
50+
secrets:
51+
token: ${{ secrets.GITHUB_TOKEN }}
52+
cosign_private_key: ${{ secrets.COSIGN_PRIVATE_KEY }}
53+
cosign_private_key_password: ${{ secrets.COSIGN_PASSWORD }}
54+
3755
pr-package-test-build-generate-matrix:
3856
name: PR - packages build matrix
3957
needs:

‎dockerfiles/Dockerfile

+14-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,16 @@ COPY . ./
6666
# We split the builder setup out so people can target it or use as a base image without doing a full build.
6767
FROM builder-base AS builder
6868
WORKDIR /src/fluent-bit/build/
69-
RUN cmake -DFLB_RELEASE=On \
69+
70+
# Required to be set to ARMV7 for that target
71+
ARG WAMR_BUILD_TARGET
72+
ARG EXTRA_CMAKE_FLAGS
73+
ENV EXTRA_CMAKE_FLAGS=${EXTRA_CMAKE_FLAGS}
74+
75+
# We do not want word splitting for EXTRA_CMAKE_FLAGS in case multiple are defined
76+
# hadolint ignore=SC2086
77+
RUN [ -n "${WAMR_BUILD_TARGET:-}" ] && EXTRA_CMAKE_FLAGS="$EXTRA_CMAKE_FLAGS -DWAMR_BUILD_TARGET=$WAMR_BUILD_TARGET"; \
78+
cmake -DFLB_RELEASE=On \
7079
-DFLB_JEMALLOC=On \
7180
-DFLB_TLS=On \
7281
-DFLB_SHARED_LIB=Off \
@@ -79,8 +88,12 @@ RUN cmake -DFLB_RELEASE=On \
7988
-DFLB_NIGHTLY_BUILD="$FLB_NIGHTLY_BUILD" \
8089
-DFLB_LOG_NO_CONTROL_CHARS=On \
8190
-DFLB_CHUNK_TRACE="$FLB_CHUNK_TRACE" \
91+
$EXTRA_CMAKE_FLAGS \
8292
..
8393

94+
ARG CFLAGS="-v"
95+
ENV CFLAGS=${CFLAGS}
96+
8497
RUN make -j "$(getconf _NPROCESSORS_ONLN)"
8598
RUN install bin/fluent-bit /fluent-bit/bin/
8699

‎dockerfiles/Dockerfile.windows

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ RUN vcpkg install --recurse openssl --triplet x64-windows-static; `
6969
WORKDIR /src/build
7070
COPY . /src/
7171

72+
ARG BUILD_PARALLEL=1
7273
RUN cmake -G "'Visual Studio 16 2019'" -DOPENSSL_ROOT_DIR='C:\dev\vcpkg\packages\openssl_x64-windows-static' -DFLB_LIBYAML_DIR='C:\dev\vcpkg\packages\libyaml_x64-windows-static' -DCMAKE_BUILD_TYPE=Release ../;`
73-
cmake --build . --config Release;
74+
cmake --build . --config Release -j ${BUILD_PARALLEL};
7475

7576
# Set up config files and binaries in single /fluent-bit hierarchy for easy copy in later stage
7677
RUN New-Item -Path /fluent-bit/etc/ -ItemType "directory"; `

‎packaging/distros/raspbian/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ ARG FLB_OUT_KAFKA=On
7171
ARG FLB_OUT_PGSQL=On
7272
ARG FLB_JEMALLOC=On
7373
ARG FLB_CHUNK_TRACE=On
74-
ARG WAMR_BUILD_TARGET=ARMV7A # Tell raspbian packages should be using armv7.
74+
#Tell raspbian packages should be using armv7.
75+
ARG WAMR_BUILD_TARGET=ARMV7A
7576

7677
ENV CFLAGS=$CFLAGS
7778
RUN cmake -DCMAKE_INSTALL_PREFIX="$CMAKE_INSTALL_PREFIX" \

0 commit comments

Comments
 (0)
Please sign in to comment.