Skip to content

Commit 86667fb

Browse files
committed
Remove updating submodule url
1 parent e0fdd46 commit 86667fb

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

build.py

+1-13
Original file line numberDiff line numberDiff line change
@@ -1806,22 +1806,10 @@ def backend_build(
18061806
cmake_script.comment()
18071807
cmake_script.mkdir(build_dir)
18081808
cmake_script.cwd(build_dir)
1809+
cmake_script.gitclone(backend_repo(be), tag, be, github_organization)
18091810

18101811
if be == "tensorrtllm":
1811-
cmake_script.cmd(
1812-
"git clone --single-branch --depth=1 -b {} https://github.com/triton-inference-server/tensorrtllm_backend tensorrtllm".format(
1813-
tag
1814-
)
1815-
)
1816-
cmake_script.cmd("cd tensorrtllm")
1817-
cmake_script.cmd(
1818-
"git submodule set-url -- tensorrt_llm https://github.com/NVIDIA/TensorRT-LLM.git"
1819-
)
1820-
cmake_script.cmd("git submodule sync")
1821-
cmake_script.cmd("cd ..")
18221812
tensorrtllm_prebuild(cmake_script)
1823-
else:
1824-
cmake_script.gitclone(backend_repo(be), tag, be, github_organization)
18251813

18261814
cmake_script.mkdir(repo_build_dir)
18271815
cmake_script.cwd(repo_build_dir)

0 commit comments

Comments
 (0)