Home
last modified time | relevance | path

Searched refs:engine_path (Results 1 – 2 of 2) sorted by relevance

/external/skia/infra/bots/
Drecipes.py140 def checkout_engine(engine_path, repo_root, recipes_cfg_path): argument
148 if not engine_path and url.startswith('file://'):
149 engine_path = urlparse.urlparse(url).path
151 if not engine_path:
156 engine_path = os.path.join(recipes_path, '.recipe_deps', 'recipe_engine')
160 _git_check_call(['init', engine_path], stdout=NUL)
164 cwd=engine_path, stdout=NUL, stderr=NUL)
166 _git_check_call(['fetch', url, branch], cwd=engine_path, stdout=NUL,
170 _git_check_call(['diff', '--quiet', revision], cwd=engine_path)
172 _git_check_call(['reset', '-q', '--hard', revision], cwd=engine_path)
[all …]
/external/skqp/infra/bots/
Drecipes.py137 def checkout_engine(engine_path, repo_root, recipes_cfg_path): argument
145 if not engine_path and url.startswith('file://'):
146 engine_path = urlparse.urlparse(url).path
148 if not engine_path:
153 engine_path = os.path.join(recipes_path, '.recipe_deps', 'recipe_engine')
157 _git_check_call(['init', engine_path], stdout=NUL)
161 cwd=engine_path, stdout=NUL, stderr=NUL)
163 _git_check_call(['fetch', url, branch], cwd=engine_path, stdout=NUL,
167 _git_check_call(['diff', '--quiet', revision], cwd=engine_path)
169 _git_check_call(['reset', '-q', '--hard', revision], cwd=engine_path)
[all …]