From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web08.34463.1608520803337982357 for ; Sun, 20 Dec 2020 19:20:03 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: bob.c.feng@intel.com) IronPort-SDR: pTLqNUccMrGnYRbmH2CQYLbFJgCbxyrqSR4FVXpN3QcKrzlrbLOVZc5P38V6lVXKNLrUO5TIRk HhfrNZdvHYqA== X-IronPort-AV: E=McAfee;i="6000,8403,9841"; a="155467032" X-IronPort-AV: E=Sophos;i="5.78,436,1599548400"; d="scan'208";a="155467032" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Dec 2020 19:20:02 -0800 IronPort-SDR: tzsVDnKZzaQKPOGmhL/2Evrr3TzoDpzU7Aab/fWZy3gE1RLOqxIvvBlS/QnRInNqn4qd0ZGojf Y4sd2OUKyJEA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.78,436,1599548400"; d="scan'208";a="415567730" Received: from shwdepsi1121.ccr.corp.intel.com ([10.239.158.32]) by orsmga001.jf.intel.com with ESMTP; 20 Dec 2020 19:20:00 -0800 From: "Bob Feng" To: devel@edk2.groups.io Cc: Jordan Justen , Andrew Fish , Ray Ni Subject: [Patch 1/1] EmulatorPkg/PlatformCI: stick with "ubuntu-18.04" for now Date: Mon, 21 Dec 2020 11:19:30 +0800 Message-Id: <20201221031930.1799-1-bob.c.feng@intel.com> X-Mailer: git-send-email 2.29.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit "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 . Signed-off-by: Bob Feng Cc: Jordan Justen Cc: Andrew Fish Cc: Ray Ni --- EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml b/EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml index 0e5f4d9961e3..17d62bb69ec5 100644 --- a/EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml +++ b/EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml @@ -15,11 +15,11 @@ pr: - master jobs: - job: Platform_CI variables: package: 'EmulatorPkg' - vm_image: 'ubuntu-latest' + vm_image: 'ubuntu-18.04' should_run: false run_flags: "MAKE_STARTUP_NSH=TRUE" #Use matrix to speed up the build process strategy: -- 2.29.1.windows.1