From 7e0534156f965a744fcada23c4355e50e5769b99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Thu, 8 Feb 2024 18:19:23 +0100 Subject: [PATCH] ci: test QEMU microvm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64592118..824da878 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,12 @@ jobs: run: cargo xtask ci qemu --target ${{ matrix.target }} - name: Run VM (hello_world, release) run: cargo xtask ci qemu --target ${{ matrix.target }} --release + - name: Run VM (hello_world-microvm, dev) + if: matrix.target == 'x86_64' + run: cargo xtask ci qemu --target ${{ matrix.target }} --image hello_world-microvm --microvm + - name: Run VM (hello_world-microvm, release) + if: matrix.target == 'x86_64' + run: cargo xtask ci qemu --target ${{ matrix.target }} --image hello_world-microvm --microvm --release - name: Run VM (hello_c, dev) if: matrix.target == 'x86_64' run: cargo xtask ci qemu --target ${{ matrix.target }} --image hello_c @@ -117,6 +123,10 @@ jobs: run: cargo xtask ci qemu --target x86_64 --accel - name: Run QEMU (hello_world, release) run: cargo xtask ci qemu --target x86_64 --accel --release + - name: Run QEMU (hello_world-microvm, dev) + run: cargo xtask ci qemu --target x86_64 --accel --image hello_world-microvm --microvm + - name: Run QEMU (hello_world-microvm, release) + run: cargo xtask ci qemu --target x86_64 --accel --image hello_world-microvm --microvm --release - name: Run UEFI (dev) run: cargo xtask ci qemu --target x86_64-uefi --accel - name: Run UEFI (release)