File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -230,3 +230,33 @@ jobs:
230
230
if : always()
231
231
run : |
232
232
vagrant ssh -- "sudo cat /vagrant/.tmp/logs/containerd"
233
+
234
+ sandbox-build :
235
+ runs-on : ubuntu-24.04
236
+ strategy :
237
+ fail-fast : false
238
+ matrix :
239
+ platform :
240
+ - linux/amd64
241
+ - linux/arm64
242
+ steps :
243
+ -
244
+ name : Checkout
245
+ uses : actions/checkout@v4
246
+ -
247
+ name : Set up QEMU
248
+ uses : docker/setup-qemu-action@v3
249
+ -
250
+ name : Set up Docker Buildx
251
+ uses : docker/setup-buildx-action@v3
252
+ with :
253
+ version : ${{ env.SETUP_BUILDX_VERSION }}
254
+ driver-opts : image=${{ env.SETUP_BUILDKIT_IMAGE }}
255
+ buildkitd-flags : --debug
256
+ -
257
+ name : Build
258
+ uses : docker/bake-action@v5
259
+ with :
260
+ targets : integration-tests-base
261
+ set : |
262
+ *.platform=${{ matrix.platform }}
You can’t perform that action at this time.
0 commit comments