From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com []) by mx.groups.io with SMTP id smtpd.web09.1520.1608755443167376209 for ; Wed, 23 Dec 2020 12:30:44 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: michael.d.kinney@intel.com) IronPort-SDR: INb+e+Yd3ASzw6NKwdNz7psQKC6kWrWlFmWSTxe1PCzcPjKPUTc0NqojkT7xxZQ4YSyBiwbe5R d0++0fB6BEnw== X-IronPort-AV: E=McAfee;i="6000,8403,9844"; a="172559500" X-IronPort-AV: E=Sophos;i="5.78,442,1599548400"; d="scan'208";a="172559500" 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: 0tFv6Ge8cNckk3zvM/3EaQyppYS1y2ry5jxoCLj8yfeJn6oxM+aBeHaSc+HpDP4oQkTCFry9ZU z0TFLL9n9IdA== X-IronPort-AV: E=Sophos;i="5.78,442,1599548400"; d="scan'208";a="417346518" 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 , Leif Lindholm , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Subject: [stable/202011][Patch 1/8] ArmVirtPkg/PlatformCI: stick with "ubuntu-18.04" for now Date: Wed, 23 Dec 2020 12:30:21 -0800 Message-Id: <20201223203028.1659-2-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: Leif Lindholm Cc: Philippe Mathieu-Daudé Signed-off-by: Laszlo Ersek Message-Id: <20201217204049.26817-2-lersek@redhat.com> Reviewed-by: Michael D Kinney Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Ard Biesheuvel (cherry picked from commit 6b04b49039cf603d612d28147dabdfbb9fd50c27) --- ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml b/ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml index b9452ec5bfaf..c5e14248bc33 100644 --- a/ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml +++ b/ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml @@ -17,7 +17,7 @@ jobs: - job: Platform_CI variables: package: 'ArmVirtPkg' - 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