File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 77
77
file : tests/docker/Dockerfile
78
78
context : ' .'
79
79
cache-from : type=gha,scope=test-runner
80
- cache-to : type=gha,scope=test-runner,mode=max
81
80
tags : test-runner:${{ github.sha }}
82
81
pull : true
83
82
load : true
Original file line number Diff line number Diff line change @@ -274,6 +274,7 @@ jobs:
274
274
name : Setup Matrix for Smoke Tests
275
275
runs-on : ubuntu-22.04
276
276
needs : [checks, build-docker-nap]
277
+ if : ${{ ! startsWith(github.ref, 'refs/tags/') }}
277
278
outputs :
278
279
matrix : ${{ steps.set-matrix.outputs.matrix }}
279
280
steps :
@@ -299,6 +300,21 @@ jobs:
299
300
\"images\": [{\"image\": \"debian\"}, {\"image\": \"debian-plus\"}]}" >> $GITHUB_OUTPUT
300
301
fi
301
302
303
+ - name : Checkout Repository
304
+ uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
305
+ - name : Docker Buildx
306
+ uses : docker/setup-buildx-action@15c905b16b06416d2086efa066dd8e3a35cc7f98 # v2.4.0
307
+ - name : Build Test-Runner Container
308
+ uses : docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3 # v3.3.0
309
+ with :
310
+ file : tests/docker/Dockerfile
311
+ context : ' .'
312
+ cache-from : type=gha,scope=test-runner
313
+ cache-to : type=gha,scope=test-runner,mode=max
314
+ tags : test-runner:${{ github.sha }}
315
+ pull : true
316
+ load : true
317
+
302
318
smoke-tests :
303
319
name : Smoke Tests
304
320
runs-on : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments