Skip to content

Commit c14438c

Browse files
committed
CI: Install qemu-utils for block device validation tests
Adds qemu-utils (for qemu-img) to the CI environment to support new tests that validate block devices and reject unsupported qemu image formats.
1 parent bc4e8f6 commit c14438c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/compile.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ jobs:
4343
go-version-file: go.mod
4444
- name: Build
4545
run: make
46+
47+
- name: Install qemu-img
48+
run: |
49+
brew update
50+
brew install qemu
51+
52+
- name: Verify qemu-img is installed
53+
run: qemu-img --version
54+
4655
- name: Test
4756
if: matrix.os != 'macOS-14'
4857
run: make test

0 commit comments

Comments
 (0)