Add LoongArch64 architecture on LoongArch64 EDK2 CI testing. Cc: Michael D Kinney <[email protected]> Cc: Liming Gao <[email protected]>
Signed-off-by: Chao Li <[email protected]> --- .pytool/CISettings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index ce330e2c73..22f84a8105 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -78,7 +78,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 ''' @@ -169,6 +170,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 -- 2.27.0 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#86508): https://edk2.groups.io/g/devel/message/86508 Mute This Topic: https://groups.io/mt/89016990/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
