Skip to content

Commit fb57c6b

Browse files
Patrick Stephenspatrick-stephens
authored andcommitted
workflows: increase size of container builders
Signed-off-by: Patrick Stephens <[email protected]>
1 parent 82222e4 commit fb57c6b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ on:
3333
type: string
3434
required: false
3535
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'
3641
secrets:
3742
token:
3843
description: The Github token or similar to authenticate with for the registry.
@@ -75,7 +80,7 @@ jobs:
7580
needs:
7681
- call-build-images-meta
7782
name: Multiarch container images to GHCR
78-
runs-on: ubuntu-latest
83+
runs-on: ubuntu-latest-8-cores
7984
environment: ${{ inputs.environment }}
8085
permissions:
8186
contents: read
@@ -120,7 +125,7 @@ jobs:
120125
context: .
121126
tags: ${{ steps.meta.outputs.tags }}
122127
labels: ${{ steps.meta.outputs.labels }}
123-
platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/s390x
128+
platforms: ${{ inputs.platforms }}
124129
target: production
125130
# Must be disabled to provide legacy format images from the registry
126131
provenance: false
@@ -147,7 +152,7 @@ jobs:
147152
context: .
148153
tags: ${{ steps.debug-meta.outputs.tags }}
149154
labels: ${{ steps.debug-meta.outputs.labels }}
150-
platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/s390x
155+
platforms: ${{ inputs.platforms }}
151156
# Must be disabled to provide legacy format images from the registry
152157
provenance: false
153158
target: debug

0 commit comments

Comments
 (0)