File tree 5 files changed +3
-15
lines changed 5 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -194,12 +194,6 @@ jobs:
194
194
echo "changed=true" >> "$GITHUB_OUTPUT"
195
195
fi
196
196
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
-
203
197
- if : steps.list-changed.outputs.changed == 'true'
204
198
name : Run chart-testing (lint)
205
199
run : |
Original file line number Diff line number Diff line change 55
55
echo "After removing files:"
56
56
df -h
57
57
58
- - uses : docker/setup-qemu-action@v3
59
-
60
- - uses : docker/setup-buildx-action@v3
61
-
62
58
- name : Run e2e tests
63
59
run : devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}'
64
60
env :
Original file line number Diff line number Diff line change 27
27
ref : ${{ github.ref }}
28
28
fetch-depth : 0
29
29
30
- - uses : docker/setup-qemu-action@v3
31
-
32
- - uses : docker/setup-buildx-action@v3
33
-
34
30
- name : Install devbox
35
31
uses :
jetify-com/[email protected]
36
32
with :
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ dockers:
111
111
- hack/addons/mindthegap-helm-registry/repos.yaml
112
112
build_flag_templates :
113
113
- " --platform=linux/amd64"
114
+ - " --builder=caren"
114
115
- " --pull"
115
116
- " --label=org.opencontainers.image.created={{.CommitDate}}"
116
117
- " --label=org.opencontainers.image.title=caren-helm-reg"
@@ -132,6 +133,7 @@ dockers:
132
133
- hack/addons/mindthegap-helm-registry/repos.yaml
133
134
build_flag_templates :
134
135
- " --platform=linux/arm64"
136
+ - " --builder=caren"
135
137
- " --pull"
136
138
- " --label=org.opencontainers.image.created={{.CommitDate}}"
137
139
- " --label=org.opencontainers.image.title=caren-helm-reg"
Original file line number Diff line number Diff line change 11
11
.PHONY : docker-buildx
12
12
docker-buildx : # # Creates buildx builder container that supports multiple platforms.
13
13
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
15
15
16
16
.PHONY : build-snapshot
17
17
build-snapshot : # # Builds a snapshot with goreleaser
You can’t perform that action at this time.
0 commit comments