From: Chao Li Date: Mon, 15 Nov 2021 09:59:53 +0000 (+0800) Subject: .pytool: Add LoongArch64 architecture on LoongArch64 EDK2 CI. X-Git-Tag: edk2-stable202211~179 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=b1b5177a0c9abb480a0f4a39f9a9aaf07b1b0810 .pytool: Add LoongArch64 architecture on LoongArch64 EDK2 CI. REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4053 Add LoongArch64 architecture on LoongArch64 EDK2 CI testing. Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Chao Li Reviewed-by: Michael D Kinney --- diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index 0c8320b1a3..cc2214071c 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -84,7 +84,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag "X64", "ARM", "AARCH64", - "RISCV64") + "RISCV64", + "LOONGARCH64") def GetTargetsSupported(self): ''' return iterable of edk2 target tags supported by this build ''' @@ -175,6 +176,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag scopes += ("gcc_arm_linux",) if "RISCV64" in self.ActualArchitectures: scopes += ("gcc_riscv64_unknown",) + if "LOONGARCH64" in self.ActualArchitectures: + scopes += ("gcc_loongarch64_unknown_linux",) self.ActualScopes = scopes return self.ActualScopes