1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import absolute_import
import sys
MULTI_REPO = "mozilla-central"
EXES = {}
if sys.platform.startswith("linux"):
EXES = {
# Get around the https warnings
"hg": [
"/usr/local/bin/hg",
"--config",
"web.cacerts=/etc/pki/tls/certs/ca-bundle.crt",
],
"hgtool.py": ["/usr/local/bin/hgtool.py"],
}
config = {
"log_name": "l10n_bumper",
"log_type": "multi",
"exes": EXES,
"gecko_pull_url": "https://hg.mozilla.org/{}".format(MULTI_REPO),
"gecko_push_url": "ssh://hg.mozilla.org/{}".format(MULTI_REPO),
"hg_user": "L10n Bumper Bot <release+l10nbumper@mozilla.com>",
"ssh_key": "~/.ssh/ffxbld_rsa",
"ssh_user": "ffxbld",
"vcs_share_base": "/builds/hg-shared",
"version_path": "browser/config/version.txt",
"status_path": ".l10n_bumper_status",
"bump_configs": [
{
"path": "mobile/locales/l10n-changesets.json",
"format": "json",
"name": "Fennec l10n changesets",
"platform_configs": [
{
"platforms": ["android-api-16", "android"],
"path": "mobile/android/locales/all-locales",
},
{
"platforms": ["android-multilocale"],
"path": "mobile/android/locales/maemo-locales",
},
],
},
{
"path": "browser/locales/l10n-changesets.json",
"format": "json",
"name": "Firefox l10n changesets",
"ignore_config": {
"ja": ["macosx64", "macosx64-devedition"],
"ja-JP-mac": [
"linux",
"linux-devedition",
"linux64",
"linux64-devedition",
"win32",
"win32-devedition",
"win64",
"win64-devedition",
"win64-aarch64",
"win64-aarch64-devedition",
],
},
"platform_configs": [
{
"platforms": [
"linux",
"linux-devedition",
"linux64",
"linux64-devedition",
"macosx64",
"macosx64-devedition",
"win32",
"win32-devedition",
"win64",
"win64-devedition",
"win64-aarch64",
"win64-aarch64-devedition",
],
"path": "browser/locales/all-locales",
}
],
},
],
}
|