Skip to content

Commit 5824ae4

Browse files
committed
CI: add vz
Signed-off-by: Akihiro Suda <[email protected]>
1 parent 23a8a7f commit 5824ae4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/test.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,32 @@ jobs:
234234
retry_on: error
235235
max_attempts: 3
236236
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

0 commit comments

Comments
 (0)