updates_firefox_release.py (2168B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 config = { 6 "log_name": "updates_release", 7 "repo": { 8 "repo": "https://hg.mozilla.org/build/tools", 9 "branch": "default", 10 "dest": "tools", 11 "vcs": "hg", 12 }, 13 "vcs_share_base": "/builds/hg-shared", 14 "push_dest": "ssh://hg.mozilla.org/build/tools", 15 "shipped-locales-url": "https://hg.mozilla.org/releases/mozilla-release/raw-file/{revision}/browser/locales/shipped-locales", 16 "ignore_no_changes": True, 17 "ssh_user": "ffxbld", 18 "ssh_key": "~/.ssh/ffxbld_rsa", 19 "archive_domain": "archive.mozilla.org", 20 "archive_prefix": "https://archive.mozilla.org/pub", 21 "previous_archive_prefix": "https://archive.mozilla.org/pub", 22 "download_domain": "download.mozilla.org", 23 "balrog_url": "https://aus5.mozilla.org", 24 "balrog_username": "balrog-ffxbld", 25 "update_channels": { 26 "beta": { 27 "version_regex": r"^(\d+\.\d+(b\d+)?)$", 28 "requires_mirrors": False, 29 "patcher_config": "mozBeta-branch-patcher2.cfg", 30 "update_verify_channel": "beta-localtest", 31 "mar_channel_ids": [ 32 "firefox-mozilla-beta", 33 "firefox-mozilla-release", 34 ], 35 "channel_names": ["beta", "beta-localtest", "beta-cdntest"], 36 "rules_to_update": ["firefox-beta-cdntest", "firefox-beta-localtest"], 37 "publish_rules": [32], 38 "schedule_asap": True, 39 }, 40 "release": { 41 "version_regex": r"^\d+\.\d+(\.\d+)?$", 42 "requires_mirrors": True, 43 "patcher_config": "mozRelease-branch-patcher2.cfg", 44 "update_verify_channel": "release-localtest", 45 "mar_channel_ids": [], 46 "channel_names": ["release", "release-localtest", "release-cdntest"], 47 "rules_to_update": ["firefox-release-cdntest", "firefox-release-localtest"], 48 "publish_rules": [145], 49 }, 50 }, 51 "balrog_use_dummy_suffix": False, 52 }