mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 13:58:40 +09:00
37 lines
912 B
Python
37 lines
912 B
Python
config = {
|
|
"branch": "jamun",
|
|
"nightly_build": True,
|
|
"update_channel": "release-dev",
|
|
|
|
# l10n
|
|
"hg_l10n_base": "https://hg.mozilla.org/releases/l10n/mozilla-release",
|
|
|
|
# repositories
|
|
# staging release uses jamun
|
|
"mozilla_dir": "jamun",
|
|
"repos": [{
|
|
"vcs": "hg",
|
|
"repo": "https://hg.mozilla.org/build/tools",
|
|
"branch": "default",
|
|
"dest": "tools",
|
|
}, {
|
|
"vcs": "hg",
|
|
"repo": "https://hg.mozilla.org/projects/jamun",
|
|
"branch": "%(revision)s",
|
|
"dest": "jamun",
|
|
"clone_upstream_url": "https://hg.mozilla.org/mozilla-unified",
|
|
}],
|
|
# purge options
|
|
'purge_minsize': 12,
|
|
'is_automation': True,
|
|
'default_actions': [
|
|
"clobber",
|
|
"pull",
|
|
"clone-locales",
|
|
"list-locales",
|
|
"setup",
|
|
"repack",
|
|
"taskcluster-upload",
|
|
"summary",
|
|
],
|
|
}
|