Skip to content

Commit 046da26

Browse files
committed
CI: add vz
Signed-off-by: Akihiro Suda <[email protected]>
1 parent f70a609 commit 046da26

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,28 @@ 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+
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+
run: ./hack/test-example.sh examples/experimental/vz.yaml

0 commit comments

Comments
 (0)