diff options
Diffstat (limited to 'testing/mozharness/configs/single_locale/try.py')
-rw-r--r-- | testing/mozharness/configs/single_locale/try.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/mozharness/configs/single_locale/try.py b/testing/mozharness/configs/single_locale/try.py new file mode 100644 index 000000000..369159111 --- /dev/null +++ b/testing/mozharness/configs/single_locale/try.py @@ -0,0 +1,42 @@ +config = { + "nightly_build": False, + "branch": "try", + "en_us_binary_url": "http://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central", + "update_channel": "nightly", + "update_gecko_source_to_enUS": False, + + # l10n + "hg_l10n_base": "https://hg.mozilla.org/l10n-central", + + # mar + "mar_tools_url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-central/mar-tools/%(platform)s", + + # repositories + "mozilla_dir": "try", + "repos": [{ + "vcs": "hg", + "repo": "https://hg.mozilla.org/build/tools", + "branch": "default", + "dest": "tools", + }, { + "vcs": "hg", + "repo": "https://hg.mozilla.org/try", + "revision": "%(revision)s", + "dest": "try", + "clone_upstream_url": "https://hg.mozilla.org/mozilla-unified", + "clone_by_revision": True, + "clone_with_purge": True, + }], + # purge options + 'is_automation': True, + "upload_env": { + "UPLOAD_USER": "trybld", + # ssh_key_dir is defined per platform: it is "~/.ssh" for every platform + # except when mock is in use, in this case, ssh_key_dir is + # /home/mock_mozilla/.ssh + "UPLOAD_SSH_KEY": "%(ssh_key_dir)s/trybld_dsa", + "UPLOAD_HOST": "upload.trybld.productdelivery.%(upload_environment)s.mozaws.net", + "POST_UPLOAD_CMD": "post_upload.py --who %(who)s --builddir %(branch)s-%(platform)s --tinderbox-builds-dir %(who)s-%(revision)s -p %(stage_product)s -i %(buildid)s --revision %(revision)s --release-to-try-builds %(post_upload_extra)s", + "UPLOAD_TO_TEMP": "1" + }, +} |