summaryrefslogtreecommitdiffstats
path: root/testing/mozharness/configs/merge_day/bump_esr.py
blob: 48ab2e9de51fa86fee9e0c8d6f04deb0a7c756e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os

ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
config = {
    "vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
    "log_name": "bump_esr",
    "version_files": [
        {"file": "browser/config/version.txt", "suffix": ""},
        {"file": "browser/config/version_display.txt", "suffix": ""},
        {"file": "config/milestone.txt", "suffix": ""},
    ],
    "tools_repo_url": "https://hg.mozilla.org/build/tools",
    "tools_repo_branch": "default",
    "to_repo_url": "ssh://hg.mozilla.org/releases/mozilla-esr52",

    "migration_behavior": "bump_second_digit",
    "require_remove_locales": False,
    "requires_head_merge": False,
    "default_actions": [
        "clean-repos",
        "pull",
        "bump_second_digit"
    ],
}