File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -234,3 +234,33 @@ 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
+ runs-on : macos-13
241
+ timeout-minutes : 120
242
+ steps :
243
+ - uses : actions/setup-go@v4
244
+ with :
245
+ go-version : 1.20.x
246
+ - uses : actions/checkout@v3
247
+ with :
248
+ fetch-depth : 1
249
+ - name : Make
250
+ run : make
251
+ - name : Install
252
+ run : make install
253
+ - name : Install test dependencies
254
+ run : brew install qemu bash coreutils
255
+ - name : Cache ~/Library/Caches/lima/download
256
+ uses : actions/cache@v3
257
+ with :
258
+ path : ~/Library/Caches/lima/download
259
+ key : ${{ runner.os }}-vz
260
+ - name : Test
261
+ uses : nick-invision/retry@v2
262
+ with :
263
+ timeout_minutes : 30
264
+ retry_on : error
265
+ max_attempts : 3
266
+ command : ./hack/test-example.sh examples/experimental/vz.yaml
You can’t perform that action at this time.
0 commit comments