MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / run

Method run

misc/python/materialize/mzbuild.py:574–579  ·  view source on GitHub ↗
(self, prep: Any)

Source from the content-addressed store, hash-verified

572 self.matching = config.pop("matching", "*")
573
574 def run(self, prep: Any) -> None:
575 super().run(prep)
576 for src in self.inputs():
577 dst = self.path / self.destination / src
578 dst.parent.mkdir(parents=True, exist_ok=True)
579 shutil.copy(self.rd.root / self.source / src, dst)
580
581 def inputs(self) -> set[str]:
582 return set(git.expand_globs(self.rd.root / self.source, self.matching))

Callers 15

runvFunction · 0.45
is_docker_image_pushedFunction · 0.45
is_ghcr_image_pushedFunction · 0.45
runMethod · 0.45
_build_lockedMethod · 0.45
msshFunction · 0.45
launch_clusterFunction · 0.45
run_sqlancerFunction · 0.45
is_dirtyFunction · 0.45
workflow_defaultFunction · 0.45
stdio_transportFunction · 0.45

Implementers 3

row.rssrc/repr/src/row.rs
range.rssrc/repr/src/adt/range.rs
lib.rssrc/row-spine/src/lib.rs

Calls 2

inputsMethod · 0.95
copyMethod · 0.45

Tested by

no test coverage detected