diff options
author | Chao Li <lichao@loongson.cn> | 2021-11-15 17:59:53 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-10-14 02:16:33 +0000 |
commit | b1b5177a0c9abb480a0f4a39f9a9aaf07b1b0810 (patch) | |
tree | 1f76375a7ac6b175c9dc7c897ffbd4e6b480112b | |
parent | ab9768cd46fe212ae05e4038ebc398a2b476e068 (diff) | |
download | edk2-b1b5177a0c9abb480a0f4a39f9a9aaf07b1b0810.tar.gz |
.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 <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Chao Li <lichao@loongson.cn>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
-rw-r--r-- | .pytool/CISettings.py | 5 |
1 files changed, 4 insertions, 1 deletions
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
|