tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

dev_updates_firefox_release_birch.py (2331B)


      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_dev",
      7    # TODO: use real repo
      8    "repo": {
      9        "repo": "https://hg.mozilla.org/users/bhearsum_mozilla.com/tools",
     10        "branch": "default",
     11        "dest": "tools",
     12        "vcs": "hg",
     13    },
     14    "vcs_share_base": "/builds/hg-shared",
     15    # TODO: use real repo
     16    "push_dest": "ssh://hg.mozilla.org/users/bhearsum_mozilla.com/tools",
     17    # birch repo used for staging release
     18    "shipped-locales-url": "https://hg.mozilla.org/projects/birch/raw-file/{revision}/browser/locales/shipped-locales",
     19    "ignore_no_changes": True,
     20    "ssh_user": "ffxbld",
     21    "ssh_key": "~/.ssh/ffxbld_rsa",
     22    "archive_domain": "ftp.stage.mozaws.net",
     23    "archive_prefix": "https://ftp.stage.mozaws.net/pub",
     24    "previous_archive_prefix": "https://archive.mozilla.org/pub",
     25    "download_domain": "download.mozilla.org",
     26    "balrog_url": "https://stage.balrog.nonprod.cloudops.mozgcp.net/",
     27    "balrog_username": "balrog-stage-ffxbld",
     28    "update_channels": {
     29        "beta": {
     30            "version_regex": r"^(\d+\.\d+(b\d+)?)$",
     31            "requires_mirrors": False,
     32            "patcher_config": "mozBeta-branch-patcher2.cfg",
     33            "update_verify_channel": "beta-localtest",
     34            "mar_channel_ids": [
     35                "firefox-mozilla-beta",
     36                "firefox-mozilla-release",
     37            ],
     38            "channel_names": ["beta", "beta-localtest", "beta-cdntest"],
     39            "rules_to_update": ["firefox-beta-cdntest", "firefox-beta-localtest"],
     40            "publish_rules": [32],
     41            "schedule_asap": True,
     42        },
     43        "release": {
     44            "version_regex": r"^\d+\.\d+(\.\d+)?$",
     45            "requires_mirrors": True,
     46            "patcher_config": "mozRelease-branch-patcher2.cfg",
     47            "update_verify_channel": "release-localtest",
     48            "mar_channel_ids": [],
     49            "channel_names": ["release", "release-localtest", "release-cdntest"],
     50            "rules_to_update": ["firefox-release-cdntest", "firefox-release-localtest"],
     51            "publish_rules": [145],
     52        },
     53    },
     54    "balrog_use_dummy_suffix": False,
     55 }