Bug 1507360: Fetch HG fingerprint; r=gps

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Prince 2018-12-05 16:19:22 +00:00
Родитель 12bc2f9591
Коммит 84412f33c4
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -699,6 +699,7 @@ def main(args):
os.environ['GECKO_HEAD_REPOSITORY'],
args.vcs_checkout,
os.environ['HG_STORE_PATH'],
fetch_hgfingerprint=args.fetch_hgfingerprint,
base_repo=base_repo,
revision=os.environ.get('GECKO_HEAD_REV'),
branch=os.environ.get('GECKO_HEAD_REF'),
@ -713,6 +714,7 @@ def main(args):
vcs_checkout('https://hg.mozilla.org/build/tools',
args.tools_checkout,
os.environ['HG_STORE_PATH'],
fetch_hgfingerprint=args.fetch_hgfingerprint,
# Always check out the latest commit on default branch.
# This is non-deterministic!
branch='default')
@ -728,6 +730,7 @@ def main(args):
os.environ['COMM_HEAD_REPOSITORY'],
args.comm_checkout,
os.environ['HG_STORE_PATH'],
fetch_hgfingerprint=args.fetch_hgfingerprint,
base_repo=base_repo,
revision=os.environ.get('COMM_HEAD_REV'),
branch=os.environ.get('COMM_HEAD_REF'))