mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
OvmfPkg/PlatformCI: add QEMU_SKIP
Skip the qemu boot test in case QEMU_SKIP is set to true. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Jiewen Yao <Jiewen.yao@intel.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
This commit is contained in:
parent
61be49e0f7
commit
21ee379407
@ -183,6 +183,11 @@ class PlatformBuilder( UefiBuilder, BuildSettingsManager):
|
|||||||
os.makedirs(VirtualDrive, exist_ok=True)
|
os.makedirs(VirtualDrive, exist_ok=True)
|
||||||
OutputPath_FV = os.path.join(self.env.GetValue("BUILD_OUTPUT_BASE"), "FV")
|
OutputPath_FV = os.path.join(self.env.GetValue("BUILD_OUTPUT_BASE"), "FV")
|
||||||
|
|
||||||
|
if (self.env.GetValue("QEMU_SKIP") and
|
||||||
|
self.env.GetValue("QEMU_SKIP").upper() == "TRUE"):
|
||||||
|
logging.info("skipping qemu boot test")
|
||||||
|
return 0
|
||||||
|
|
||||||
#
|
#
|
||||||
# QEMU must be on the path
|
# QEMU must be on the path
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user