mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
47 lines
1.9 KiB
Python
47 lines
1.9 KiB
Python
|
|
config = {
|
|
"log_name": "updates_release",
|
|
"repo": {
|
|
"repo": "https://hg.mozilla.org/build/tools",
|
|
"branch": "default",
|
|
"dest": "tools",
|
|
"vcs": "hg",
|
|
},
|
|
"vcs_share_base": "/builds/hg-shared",
|
|
"push_dest": "ssh://hg.mozilla.org/build/tools",
|
|
"shipped-locales-url": "https://hg.mozilla.org/releases/mozilla-release/raw-file/{revision}/browser/locales/shipped-locales",
|
|
"ignore_no_changes": True,
|
|
"ssh_user": "ffxbld",
|
|
"ssh_key": "~/.ssh/ffxbld_rsa",
|
|
"archive_domain": "archive.mozilla.org",
|
|
"archive_prefix": "https://archive.mozilla.org/pub",
|
|
"previous_archive_prefix": "https://archive.mozilla.org/pub",
|
|
"download_domain": "download.mozilla.org",
|
|
"balrog_url": "https://aus5.mozilla.org",
|
|
"balrog_username": "balrog-ffxbld",
|
|
"update_channels": {
|
|
"beta": {
|
|
"version_regex": r"^(\d+\.\d+(b\d+)?)$",
|
|
"requires_mirrors": False,
|
|
"patcher_config": "mozBeta-branch-patcher2.cfg",
|
|
"update_verify_channel": "beta-localtest",
|
|
"mar_channel_ids": [
|
|
"firefox-mozilla-beta", "firefox-mozilla-release",
|
|
],
|
|
"channel_names": ["beta", "beta-localtest", "beta-cdntest"],
|
|
"rules_to_update": ["firefox-beta-cdntest", "firefox-beta-localtest"],
|
|
"publish_rules": ["firefox-beta"],
|
|
},
|
|
"release": {
|
|
"version_regex": r"^\d+\.\d+(\.\d+)?$",
|
|
"requires_mirrors": True,
|
|
"patcher_config": "mozRelease-branch-patcher2.cfg",
|
|
"update_verify_channel": "release-localtest",
|
|
"mar_channel_ids": [],
|
|
"channel_names": ["release", "release-localtest", "release-cdntest"],
|
|
"rules_to_update": ["firefox-release-cdntest", "firefox-release-localtest"],
|
|
"publish_rules": ["firefox-release"],
|
|
},
|
|
},
|
|
"balrog_use_dummy_suffix": False,
|
|
}
|