Lines Matching refs:repo_root
59 def parse(repo_root, recipes_cfg_path):
63 repo_root (str) - native path to the root of the repo we're trying to run
105 recipes_path = os.path.join(repo_root,
171 def checkout_engine(engine_path, repo_root, recipes_cfg_path):
172 dep, recipes_path = parse(repo_root, recipes_cfg_path)
175 return os.path.join(repo_root, recipes_path)
236 # calculate repo_root from recipes_cfg_path
237 repo_root = os.path.dirname(
240 # find repo_root with git and calculate recipes_cfg_path
241 repo_root = (
244 repo_root = os.path.abspath(repo_root).decode()
245 recipes_cfg_path = os.path.join(repo_root, 'infra', 'config', 'recipes.cfg')
247 engine_path = checkout_engine(engine_override, repo_root, recipes_cfg_path)