Bug 1545117: added message which includes the local perf-automation github repo clone path r=rwood

Differential Revision: https://phabricator.services.mozilla.com/D31177

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ivan Yung 2019-05-15 14:27:57 +00:00
Родитель 37435d53a5
Коммит b4030f9fc6
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -69,11 +69,13 @@ class RaptorRunner(MozbuildObject):
Benchmarks can either live in-tree or in an external repository. In the latter
case also clone/update the repository if necessary.
"""
print("Updating external benchmarks from {}".format(BENCHMARK_REPOSITORY))
# Set up the external repo
external_repo_path = os.path.join(get_state_dir(), 'performance-tests')
print("Updating external benchmarks from {}".format(BENCHMARK_REPOSITORY))
print("Cloning the benchmarks to {}".format(external_repo_path))
try:
subprocess.check_output(['git', '--version'])
except Exception as ex: