Skip to content

Commit

Permalink
workflows: increase size of container builders
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Stephens <[email protected]>
  • Loading branch information
patrick-stephens committed Jan 24, 2025
1 parent 82222e4 commit fb57c6b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/call-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ on:
type: string
required: false
default: ""
platforms:
description: The platforms to build for
type: string
required: false
default: 'linux/amd64, linux/arm64, linux/arm/v7, linux/s390x'
secrets:
token:
description: The Github token or similar to authenticate with for the registry.
Expand Down Expand Up @@ -75,7 +80,7 @@ jobs:
needs:
- call-build-images-meta
name: Multiarch container images to GHCR
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
environment: ${{ inputs.environment }}
permissions:
contents: read
Expand Down Expand Up @@ -120,7 +125,7 @@ jobs:
context: .
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/s390x
platforms: ${{ inputs.platforms }}
target: production
# Must be disabled to provide legacy format images from the registry
provenance: false
Expand All @@ -147,7 +152,7 @@ jobs:
context: .
tags: ${{ steps.debug-meta.outputs.tags }}
labels: ${{ steps.debug-meta.outputs.labels }}
platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/s390x
platforms: ${{ inputs.platforms }}
# Must be disabled to provide legacy format images from the registry
provenance: false
target: debug
Expand Down

0 comments on commit fb57c6b

Please sign in to comment.