mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 08:57:34 +09:00
56 lines
1.6 KiB
Python
56 lines
1.6 KiB
Python
# This is a template config file for marionette production.
|
|
import os
|
|
|
|
HG_SHARE_BASE_DIR = "/builds/hg-shared"
|
|
|
|
config = {
|
|
# marionette options
|
|
"marionette_address": "localhost:2828",
|
|
"test_manifest": "unit-tests.ini",
|
|
|
|
"vcs_share_base": HG_SHARE_BASE_DIR,
|
|
"exes": {
|
|
'python': '/tools/buildbot/bin/python',
|
|
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
|
'tooltool.py': "/tools/tooltool.py",
|
|
},
|
|
|
|
"find_links": [
|
|
"http://pypi.pvt.build.mozilla.org/pub",
|
|
"http://pypi.pub.build.mozilla.org/pub",
|
|
],
|
|
"pip_index": False,
|
|
|
|
"buildbot_json_path": "buildprops.json",
|
|
|
|
"default_actions": [
|
|
'clobber',
|
|
'read-buildbot-config',
|
|
'download-and-extract',
|
|
'create-virtualenv',
|
|
'install',
|
|
'run-tests',
|
|
],
|
|
"default_blob_upload_servers": [
|
|
"https://blobupload.elasticbeanstalk.com",
|
|
],
|
|
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
|
"download_symbols": "ondemand",
|
|
"download_minidump_stackwalk": True,
|
|
"tooltool_cache": "/builds/tooltool_cache",
|
|
"suite_definitions": {
|
|
"marionette_desktop": {
|
|
"options": [
|
|
"--log-raw=%(raw_log_file)s",
|
|
"--log-errorsummary=%(error_summary_file)s",
|
|
"--log-html=%(html_report_file)s",
|
|
"--binary=%(binary)s",
|
|
"--address=%(address)s",
|
|
"--symbols-path=%(symbols_path)s"
|
|
],
|
|
"run_filename": "",
|
|
"testsdir": ""
|
|
}
|
|
},
|
|
"structured_output": True,
|
|
}
|