From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web09.1520.1608755443167376209 for ; Wed, 23 Dec 2020 12:30:43 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: michael.d.kinney@intel.com) IronPort-SDR: /++swCJE3iv0WHBj3FVucMw2w5UoWLFp5rezl+su+D9U85VYj6ZLzOuaM6f8hY4vYzaPjwIbHv n9ICXcJcOYuw== X-IronPort-AV: E=McAfee;i="6000,8403,9844"; a="172559499" X-IronPort-AV: E=Sophos;i="5.78,442,1599548400"; d="scan'208";a="172559499" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Dec 2020 12:30:37 -0800 IronPort-SDR: eIGBIjqz6ST8J2aTnX7Agvh2XqmpYOc1QMqxAkZvri3fuYYWbRyzaDvRDkHnGd7qeDKupeudbS eNa0xTrONu4w== X-IronPort-AV: E=Sophos;i="5.78,442,1599548400"; d="scan'208";a="417346526" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.209.22.25]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Dec 2020 12:30:37 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Laszlo Ersek , Ard Biesheuvel , Jordan Justen , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Subject: [stable/202011][Patch 2/8] OvmfPkg/PlatformCI: stick with "ubuntu-18.04" for now Date: Wed, 23 Dec 2020 12:30:22 -0800 Message-Id: <20201223203028.1659-3-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.29.2.windows.2 In-Reply-To: <20201223203028.1659-1-michael.d.kinney@intel.com> References: <20201223203028.1659-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Laszlo Ersek "vm_image: 'ubuntu-latest'" now refers to Ubuntu Focal (20.04LTS), not Ubuntu Bionic (18.04LTS), according to . In Focal, the "qemu" package is a dummy package with no dependencies, and so the actual emulators are not pulled in. Compare: https://packages.ubuntu.com/bionic/qemu https://packages.ubuntu.com/focal/qemu This causes CI runs to fail. It would be best to switch to the "qemu-system" package name, which continues to depend on the emulators: https://packages.ubuntu.com/bionic/qemu-system https://packages.ubuntu.com/focal/qemu-system However, while that package does make the emulators available, the emulators crash. So for now, stick with the previous Ubuntu environment, which continues to be supported, per . Cc: Ard Biesheuvel Cc: Jordan Justen Cc: Philippe Mathieu-Daudé Signed-off-by: Laszlo Ersek Message-Id: <20201217204049.26817-3-lersek@redhat.com> Reviewed-by: Michael D Kinney Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Ard Biesheuvel (cherry picked from commit 878743c0f3c9fc33e6e7e5bdb8e6eda0a74f3b70) --- OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml b/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml index a47d273217ab..df6a62cd6107 100644 --- a/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml +++ b/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml @@ -17,7 +17,7 @@ jobs: - job: Platform_CI variables: package: 'OvmfPkg' - vm_image: 'ubuntu-latest' + vm_image: 'ubuntu-18.04' should_run: true run_flags: "MAKE_STARTUP_NSH=TRUE QEMU_HEADLESS=TRUE" -- 2.29.2.windows.2