From 781dcddc4f379274a45c4d931fac9a258aa16856 Mon Sep 17 00:00:00 2001 From: pan <601760354@163.com> Date: Mon, 1 Apr 2024 17:18:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E5=AE=89=E8=A3=85DevKitCLI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/install_dependency/src/constant.py | 2 +- tools/install_dependency/src/machine/machine.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/install_dependency/src/constant.py b/tools/install_dependency/src/constant.py index 2929bf0..c58f279 100644 --- a/tools/install_dependency/src/constant.py +++ b/tools/install_dependency/src/constant.py @@ -13,7 +13,7 @@ DEPENDENCY_DIR = "devkitdependencies" INSTRUCTION = "instruction" ROLE_COMPONENT = { - SCANNER: ["BiShengJDK17"], + SCANNER: ["BiShengJDK17", "DevKitCLI"], C_BUIDLER: ["GCCforOpenEuler", "BiShengCompiler", "BiShengJDK17", "A-FOT", "NonInvasiveSwitching"], JAVA_BUILDER: ["BiShengJDK17", "BiShengJDK8"], EXECUTOR: ["BiShengJDK17", "LkpTests"], diff --git a/tools/install_dependency/src/machine/machine.py b/tools/install_dependency/src/machine/machine.py index 236d29d..871d994 100644 --- a/tools/install_dependency/src/machine/machine.py +++ b/tools/install_dependency/src/machine/machine.py @@ -142,6 +142,7 @@ class Machine: "OpenEulerMirrorISO": self.deploy_iso_handle, "UnOpenEulerMirrorISO": self.undeploy_iso_handle, "A-FOT": self.install_a_fot, + "DevKitCLI": self.default_install_component_handle, } self._remote_exec_command(MKDIR_TMP_DEVKITDEPENDENCIES_CMD, ssh_client) self._remote_exec_command(CHECK_TMP_SPACE_SUFFICIENT_FOR_PACKAGE, ssh_client) -- Gitee