2019-10-08 05:25:30 +02:00
|
|
|
# @file
|
|
|
|
#
|
|
|
|
# Copyright (c) Microsoft Corporation.
|
2020-04-03 07:51:12 +02:00
|
|
|
# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
2020-12-03 11:27:51 +01:00
|
|
|
# Copyright (c) 2020 - 2021, ARM Limited. All rights reserved.<BR>
|
2019-10-08 05:25:30 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
##
|
|
|
|
import os
|
|
|
|
import logging
|
|
|
|
from edk2toolext.environment import shell_environment
|
|
|
|
from edk2toolext.invocables.edk2_ci_build import CiBuildSettingsManager
|
|
|
|
from edk2toolext.invocables.edk2_setup import SetupSettingsManager, RequiredSubmodule
|
|
|
|
from edk2toolext.invocables.edk2_update import UpdateSettingsManager
|
|
|
|
from edk2toolext.invocables.edk2_pr_eval import PrEvalSettingsManager
|
|
|
|
from edk2toollib.utility_functions import GetHostInfo
|
|
|
|
|
|
|
|
|
|
|
|
class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManager, PrEvalSettingsManager):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.ActualPackages = []
|
|
|
|
self.ActualTargets = []
|
|
|
|
self.ActualArchitectures = []
|
|
|
|
self.ActualToolChainTag = ""
|
|
|
|
|
|
|
|
# ####################################################################################### #
|
|
|
|
# Extra CmdLine configuration #
|
|
|
|
# ####################################################################################### #
|
|
|
|
|
|
|
|
def AddCommandLineOptions(self, parserObj):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def RetrieveCommandLineOptions(self, args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
# ####################################################################################### #
|
|
|
|
# Default Support for this Ci Build #
|
|
|
|
# ####################################################################################### #
|
|
|
|
|
|
|
|
def GetPackagesSupported(self):
|
|
|
|
''' return iterable of edk2 packages supported by this build.
|
|
|
|
These should be edk2 workspace relative paths '''
|
|
|
|
|
2020-04-08 08:09:02 +02:00
|
|
|
return ("ArmVirtPkg",
|
2020-08-07 19:29:34 +02:00
|
|
|
"DynamicTablesPkg",
|
2020-04-08 08:09:02 +02:00
|
|
|
"EmulatorPkg",
|
|
|
|
"MdePkg",
|
2019-10-08 05:25:30 +02:00
|
|
|
"MdeModulePkg",
|
|
|
|
"NetworkPkg",
|
|
|
|
"PcAtChipsetPkg",
|
|
|
|
"SecurityPkg",
|
|
|
|
"UefiCpuPkg",
|
|
|
|
"FmpDevicePkg",
|
|
|
|
"ShellPkg",
|
2020-12-03 11:27:51 +01:00
|
|
|
"StandaloneMmPkg",
|
2019-10-08 05:25:30 +02:00
|
|
|
"FatPkg",
|
2020-01-22 19:17:23 +01:00
|
|
|
"CryptoPkg",
|
2020-04-08 08:09:02 +02:00
|
|
|
"UnitTestFrameworkPkg",
|
2020-10-06 03:12:59 +02:00
|
|
|
"OvmfPkg",
|
|
|
|
"RedfishPkg"
|
2019-10-08 05:25:30 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def GetArchitecturesSupported(self):
|
|
|
|
''' return iterable of edk2 architectures supported by this build '''
|
2020-04-03 07:51:12 +02:00
|
|
|
return (
|
|
|
|
"IA32",
|
2019-10-08 05:25:30 +02:00
|
|
|
"X64",
|
|
|
|
"ARM",
|
2020-04-03 07:51:12 +02:00
|
|
|
"AARCH64",
|
|
|
|
"RISCV64")
|
2019-10-08 05:25:30 +02:00
|
|
|
|
|
|
|
def GetTargetsSupported(self):
|
|
|
|
''' return iterable of edk2 target tags supported by this build '''
|
|
|
|
return ("DEBUG", "RELEASE", "NO-TARGET", "NOOPT")
|
|
|
|
|
|
|
|
# ####################################################################################### #
|
|
|
|
# Verify and Save requested Ci Build Config #
|
|
|
|
# ####################################################################################### #
|
|
|
|
|
|
|
|
def SetPackages(self, list_of_requested_packages):
|
|
|
|
''' Confirm the requested package list is valid and configure SettingsManager
|
|
|
|
to build the requested packages.
|
|
|
|
|
|
|
|
Raise UnsupportedException if a requested_package is not supported
|
|
|
|
'''
|
|
|
|
unsupported = set(list_of_requested_packages) - \
|
|
|
|
set(self.GetPackagesSupported())
|
|
|
|
if(len(unsupported) > 0):
|
|
|
|
logging.critical(
|
|
|
|
"Unsupported Package Requested: " + " ".join(unsupported))
|
|
|
|
raise Exception("Unsupported Package Requested: " +
|
|
|
|
" ".join(unsupported))
|
|
|
|
self.ActualPackages = list_of_requested_packages
|
|
|
|
|
|
|
|
def SetArchitectures(self, list_of_requested_architectures):
|
|
|
|
''' Confirm the requests architecture list is valid and configure SettingsManager
|
|
|
|
to run only the requested architectures.
|
|
|
|
|
|
|
|
Raise Exception if a list_of_requested_architectures is not supported
|
|
|
|
'''
|
|
|
|
unsupported = set(list_of_requested_architectures) - \
|
|
|
|
set(self.GetArchitecturesSupported())
|
|
|
|
if(len(unsupported) > 0):
|
|
|
|
logging.critical(
|
|
|
|
"Unsupported Architecture Requested: " + " ".join(unsupported))
|
|
|
|
raise Exception(
|
|
|
|
"Unsupported Architecture Requested: " + " ".join(unsupported))
|
|
|
|
self.ActualArchitectures = list_of_requested_architectures
|
|
|
|
|
|
|
|
def SetTargets(self, list_of_requested_target):
|
|
|
|
''' Confirm the request target list is valid and configure SettingsManager
|
|
|
|
to run only the requested targets.
|
|
|
|
|
|
|
|
Raise UnsupportedException if a requested_target is not supported
|
|
|
|
'''
|
|
|
|
unsupported = set(list_of_requested_target) - \
|
|
|
|
set(self.GetTargetsSupported())
|
|
|
|
if(len(unsupported) > 0):
|
|
|
|
logging.critical(
|
|
|
|
"Unsupported Targets Requested: " + " ".join(unsupported))
|
|
|
|
raise Exception("Unsupported Targets Requested: " +
|
|
|
|
" ".join(unsupported))
|
|
|
|
self.ActualTargets = list_of_requested_target
|
|
|
|
|
|
|
|
# ####################################################################################### #
|
|
|
|
# Actual Configuration for Ci Build #
|
|
|
|
# ####################################################################################### #
|
|
|
|
|
|
|
|
def GetActiveScopes(self):
|
|
|
|
''' return tuple containing scopes that should be active for this process '''
|
2020-01-22 19:17:23 +01:00
|
|
|
scopes = ("cibuild", "edk2-build", "host-based-test")
|
2019-10-08 05:25:30 +02:00
|
|
|
|
|
|
|
self.ActualToolChainTag = shell_environment.GetBuildVars().GetValue("TOOL_CHAIN_TAG", "")
|
|
|
|
|
|
|
|
if GetHostInfo().os.upper() == "LINUX" and self.ActualToolChainTag.upper().startswith("GCC"):
|
|
|
|
if "AARCH64" in self.ActualArchitectures:
|
|
|
|
scopes += ("gcc_aarch64_linux",)
|
|
|
|
if "ARM" in self.ActualArchitectures:
|
|
|
|
scopes += ("gcc_arm_linux",)
|
2020-04-03 07:51:12 +02:00
|
|
|
if "RISCV64" in self.ActualArchitectures:
|
|
|
|
scopes += ("gcc_riscv64_unknown",)
|
2019-10-08 05:25:30 +02:00
|
|
|
|
|
|
|
return scopes
|
|
|
|
|
|
|
|
def GetRequiredSubmodules(self):
|
|
|
|
''' return iterable containing RequiredSubmodule objects.
|
|
|
|
If no RequiredSubmodules return an empty iterable
|
|
|
|
'''
|
2020-01-22 19:17:23 +01:00
|
|
|
rs = []
|
2019-10-08 05:25:30 +02:00
|
|
|
rs.append(RequiredSubmodule(
|
|
|
|
"ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3", False))
|
|
|
|
rs.append(RequiredSubmodule(
|
|
|
|
"CryptoPkg/Library/OpensslLib/openssl", False))
|
2020-01-22 19:17:23 +01:00
|
|
|
rs.append(RequiredSubmodule(
|
|
|
|
"UnitTestFrameworkPkg/Library/CmockaLib/cmocka", False))
|
2019-12-27 07:28:20 +01:00
|
|
|
rs.append(RequiredSubmodule(
|
|
|
|
"MdeModulePkg/Universal/RegularExpressionDxe/oniguruma", False))
|
2020-02-12 11:08:15 +01:00
|
|
|
rs.append(RequiredSubmodule(
|
|
|
|
"MdeModulePkg/Library/BrotliCustomDecompressLib/brotli", False))
|
2020-02-21 03:21:06 +01:00
|
|
|
rs.append(RequiredSubmodule(
|
|
|
|
"BaseTools/Source/C/BrotliCompress/brotli", False))
|
2019-10-08 05:25:30 +02:00
|
|
|
return rs
|
|
|
|
|
|
|
|
def GetName(self):
|
|
|
|
return "Edk2"
|
|
|
|
|
|
|
|
def GetDependencies(self):
|
2020-01-22 19:17:23 +01:00
|
|
|
return [
|
|
|
|
]
|
2019-10-08 05:25:30 +02:00
|
|
|
|
|
|
|
def GetPackagesPath(self):
|
|
|
|
return ()
|
|
|
|
|
|
|
|
def GetWorkspaceRoot(self):
|
|
|
|
''' get WorkspacePath '''
|
|
|
|
return os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
|
|
def FilterPackagesToTest(self, changedFilesList: list, potentialPackagesList: list) -> list:
|
|
|
|
''' Filter potential packages to test based on changed files. '''
|
2020-01-22 19:17:23 +01:00
|
|
|
build_these_packages = []
|
|
|
|
possible_packages = potentialPackagesList.copy()
|
2019-10-08 05:25:30 +02:00
|
|
|
for f in changedFilesList:
|
2020-01-22 19:17:23 +01:00
|
|
|
# split each part of path for comparison later
|
|
|
|
nodes = f.split("/")
|
2019-10-08 05:25:30 +02:00
|
|
|
|
|
|
|
# python file change in .pytool folder causes building all
|
|
|
|
if f.endswith(".py") and ".pytool" in nodes:
|
|
|
|
build_these_packages = possible_packages
|
|
|
|
break
|
|
|
|
|
|
|
|
# BaseTools files that might change the build
|
|
|
|
if "BaseTools" in nodes:
|
|
|
|
if os.path.splitext(f) not in [".txt", ".md"]:
|
|
|
|
build_these_packages = possible_packages
|
|
|
|
break
|
|
|
|
return build_these_packages
|