diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/mozharness/configs/multi_locale/standalone_mozilla-central.py | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/mozharness/configs/multi_locale/standalone_mozilla-central.py')
-rw-r--r-- | testing/mozharness/configs/multi_locale/standalone_mozilla-central.py | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/testing/mozharness/configs/multi_locale/standalone_mozilla-central.py b/testing/mozharness/configs/multi_locale/standalone_mozilla-central.py new file mode 100644 index 000000000..36ad4de58 --- /dev/null +++ b/testing/mozharness/configs/multi_locale/standalone_mozilla-central.py @@ -0,0 +1,49 @@ +import os +# The name of the directory we'll pull our source into. +BUILD_DIR = "mozilla-central" +# This is everything that comes after https://hg.mozilla.org/ +# e.g. "releases/mozilla-aurora" +REPO_PATH = "mozilla-central" +# This is where the l10n repos are (everything after https://hg.mozilla.org/) +# for mozilla-central, that's "l10n-central". +# For mozilla-aurora, that's "releases/l10n/mozilla-aurora" +L10N_REPO_PATH = "l10n-central" +# Currently this is assumed to be a subdirectory of your build dir +OBJDIR = "objdir-droid" +# Set this to mobile/xul for XUL Fennec +ANDROID_DIR = "mobile/android" +# Absolute path to your mozconfig. +# By default it looks at "./mozconfig" +MOZCONFIG = os.path.join(os.getcwd(), "mozconfig") + +config = { + "work_dir": ".", + "log_name": "multilocale", + "objdir": OBJDIR, + "locales_file": "%s/%s/locales/maemo-locales" % (BUILD_DIR, ANDROID_DIR), + "locales_dir": "%s/locales" % ANDROID_DIR, + "ignore_locales": ["en-US", "multi"], + "repos": [{ + "repo": "https://hg.mozilla.org/%s" % REPO_PATH, + "branch": "default", + "dest": BUILD_DIR, + }], + "vcs_share_base": "/builds/hg-shared", + "l10n_repos": [], + "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH, + "hg_l10n_tag": "default", + "l10n_dir": "l10n", + "merge_locales": True, + "mozilla_dir": BUILD_DIR, + "mozconfig": MOZCONFIG, + "default_actions": [ + "pull-locale-source", + "build", + "package-en-US", + "backup-objdir", + "restore-objdir", + "add-locales", + "package-multi", + "summary", + ], +} |