We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfdfc8d commit 1fdf33bCopy full SHA for 1fdf33b
1 file changed
os/mkosi/tests/acceptance.sh
@@ -27,7 +27,10 @@ grep -q 'AmdSev/AmdSevX64.dsc' "$D/scripts/build-ovmf.sh"
27
grep -q 'objcopy --strip-debug' "$D/build.sh"
28
grep -q 'depmod -b.*KERNEL_VERSION-dstack' "$D/build.sh"
29
grep -q 'prune-rootfs.sh' "$D/build.sh"
30
-! grep -q '^[[:space:]]*ovmf$' "$D/mkosi.conf"
+if grep -q '^[[:space:]]*ovmf$' "$D/mkosi.conf"; then
31
+ echo 'distribution OVMF must not be installed in the guest rootfs' >&2
32
+ exit 1
33
+fi
34
grep -q '"firmware_sev":"files/ovmf-sev.fd"' "$D/scripts/make-release-artifacts.sh"
35
grep -q 'measurement.snp.cbor' "$D/tests/check-output.sh"
36
grep -q '0001-validate-ocsp-response-freshness.patch' "$D/scripts/build-nvattest.sh"
0 commit comments