MCPcopy Index your code
hub / github.com/triton-inference-server/server / makeinstall

Method makeinstall

build.py:252–256  ·  view source on GitHub ↗
(self, target="install")

Source from the content-addressed store, hash-verified

250 self.cmd(f'cmake {" ".join(env_args)} {" ".join(args)}', check_exitcode=True)
251
252 def makeinstall(self, target="install"):
253 verbose_flag = "-v" if self._verbose else ""
254 self.cmd(
255 f"cmake --build . --config {FLAGS.build_type} -j{FLAGS.build_parallel} {verbose_flag} -t {target}"
256 )
257
258 def gitclone(self, repo, tag, subdir, org):
259 clone_dir = subdir

Callers 4

core_buildFunction · 0.80
backend_buildFunction · 0.80
repo_agent_buildFunction · 0.80
cache_buildFunction · 0.80

Calls 1

cmdMethod · 0.95

Tested by

no test coverage detected