mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
50 lines
2.1 KiB
Python
50 lines
2.1 KiB
Python
|
|
config = {
|
|
"log_name": "updates_release_dev",
|
|
# TODO: use real repo
|
|
"repo": {
|
|
"repo": "https://hg.mozilla.org/users/raliiev_mozilla.com/tools",
|
|
"branch": "default",
|
|
"dest": "tools",
|
|
"vcs": "hg",
|
|
},
|
|
"vcs_share_base": "/builds/hg-shared",
|
|
# TODO: use real repo
|
|
"push_dest": "ssh://hg.mozilla.org/users/raliiev_mozilla.com/tools",
|
|
# jamun repo used for staging release
|
|
"shipped-locales-url": "https://hg.mozilla.org/projects/jamun/raw-file/{revision}/browser/locales/shipped-locales",
|
|
"ignore_no_changes": True,
|
|
"ssh_user": "ffxbld",
|
|
"ssh_key": "~/.ssh/ffxbld_rsa",
|
|
"archive_domain": "ftp.stage.mozaws.net",
|
|
"archive_prefix": "https://ftp.stage.mozaws.net/pub",
|
|
"previous_archive_prefix": "https://archive.mozilla.org/pub",
|
|
"download_domain": "download.mozilla.org",
|
|
"balrog_url": "http://ec2-54-241-39-23.us-west-1.compute.amazonaws.com",
|
|
"balrog_username": "balrog-stage-ffxbld",
|
|
"update_channels": {
|
|
"beta-dev": {
|
|
"version_regex": r"^(\d+\.\d+(b\d+)?)$",
|
|
"requires_mirrors": False,
|
|
"patcher_config": "mozDate-branch-patcher2.cfg",
|
|
"update_verify_channel": "beta-dev-localtest",
|
|
"mar_channel_ids": [
|
|
"firefox-mozilla-beta-dev", "firefox-mozilla-release-dev",
|
|
],
|
|
"channel_names": ["beta-dev", "beta-dev-localtest", "beta-dev-cdntest"],
|
|
"rules_to_update": ["firefox-beta-dev-cdntest", "firefox-beta-dev-localtest"],
|
|
"publish_rules": ["firefox-beta"],
|
|
},
|
|
"release-dev": {
|
|
"version_regex": r"^\d+\.\d+(\.\d+)?$",
|
|
"requires_mirrors": True,
|
|
"patcher_config": "mozJamun-branch-patcher2.cfg",
|
|
"update_verify_channel": "release-dev-localtest",
|
|
"mar_channel_ids": [],
|
|
"channel_names": ["release-dev", "release-dev-localtest", "release-dev-cdntest"],
|
|
"rules_to_update": ["firefox-release-dev-cdntest", "firefox-release-dev-localtest"],
|
|
"publish_rules": ["firefox-release"],
|
|
},
|
|
},
|
|
"balrog_use_dummy_suffix": False,
|
|
}
|