Skip to content

Commit 07f8ea7

Browse files
committed
fix: specify builder
Co-authored-by: dlipovetsky [email protected]
1 parent 2fb3d76 commit 07f8ea7

File tree

5 files changed

+3
-15
lines changed

5 files changed

+3
-15
lines changed

.github/workflows/checks.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,12 +194,6 @@ jobs:
194194
echo "changed=true" >> "$GITHUB_OUTPUT"
195195
fi
196196
197-
- if: steps.list-changed.outputs.changed == 'true'
198-
uses: docker/setup-qemu-action@v3
199-
200-
- if: steps.list-changed.outputs.changed == 'true'
201-
uses: docker/setup-buildx-action@v3
202-
203197
- if: steps.list-changed.outputs.changed == 'true'
204198
name: Run chart-testing (lint)
205199
run: |

.github/workflows/e2e.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ jobs:
5555
echo "After removing files:"
5656
df -h
5757
58-
- uses: docker/setup-qemu-action@v3
59-
60-
- uses: docker/setup-buildx-action@v3
61-
6258
- name: Run e2e tests
6359
run: devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}'
6460
env:

.github/workflows/release-tag.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ jobs:
2727
ref: ${{ github.ref }}
2828
fetch-depth: 0
2929

30-
- uses: docker/setup-qemu-action@v3
31-
32-
- uses: docker/setup-buildx-action@v3
33-
3430
- name: Install devbox
3531
uses: jetify-com/[email protected]
3632
with:

.goreleaser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ dockers:
111111
- hack/addons/mindthegap-helm-registry/repos.yaml
112112
build_flag_templates:
113113
- "--platform=linux/amd64"
114+
- "--builder=caren"
114115
- "--pull"
115116
- "--label=org.opencontainers.image.created={{.CommitDate}}"
116117
- "--label=org.opencontainers.image.title=caren-helm-reg"
@@ -132,6 +133,7 @@ dockers:
132133
- hack/addons/mindthegap-helm-registry/repos.yaml
133134
build_flag_templates:
134135
- "--platform=linux/arm64"
136+
- "--builder=caren"
135137
- "--pull"
136138
- "--label=org.opencontainers.image.created={{.CommitDate}}"
137139
- "--label=org.opencontainers.image.title=caren-helm-reg"

make/goreleaser.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif
1111
.PHONY: docker-buildx
1212
docker-buildx: ## Creates buildx builder container that supports multiple platforms.
1313
docker-buildx:
14-
docker buildx create --use --name=caren --platform=linux/arm64,linux/amd64 || true
14+
docker buildx create --name=caren --platform=linux/arm64,linux/amd64 || true
1515

1616
.PHONY: build-snapshot
1717
build-snapshot: ## Builds a snapshot with goreleaser

0 commit comments

Comments
 (0)