File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -234,3 +234,32 @@ jobs:
234
234
retry_on : error
235
235
max_attempts : 3
236
236
command : ./hack/test-upgrade.sh ${{ matrix.oldver }} ${{ github.sha }}
237
+
238
+ vz :
239
+ name : " vz"
240
+ strategy :
241
+ matrix :
242
+ # Failure is expected on macos-12, but the logs should be still available
243
+ platform : [macos-12, macos-13]
244
+ runs-on : ${{ matrix.platform }}
245
+ timeout-minutes : 120
246
+ steps :
247
+ - uses : actions/setup-go@v4
248
+ with :
249
+ go-version : 1.20.x
250
+ - uses : actions/checkout@v3
251
+ with :
252
+ fetch-depth : 1
253
+ - name : Make
254
+ run : make
255
+ - name : Install
256
+ run : make install
257
+ - name : Install test dependencies
258
+ run : brew install qemu bash coreutils
259
+ - name : Cache ~/Library/Caches/lima/download
260
+ uses : actions/cache@v3
261
+ with :
262
+ path : ~/Library/Caches/lima/download
263
+ key : ${{ runner.os }}-vz
264
+ - name : Test
265
+ run : ./hack/test-example.sh examples/experimental/vz.yaml
You can’t perform that action at this time.
0 commit comments