mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
56 lines
1.6 KiB
Python
56 lines
1.6 KiB
Python
import os
|
|
import sys
|
|
import mozharness
|
|
|
|
external_tools_path = os.path.join(
|
|
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
|
'external_tools',
|
|
)
|
|
|
|
config = {
|
|
"virtualenv_python_dll": 'c:/mozilla-build/python27/python27.dll',
|
|
"virtualenv_path": 'venv',
|
|
"exes": {
|
|
'python': 'c:/mozilla-build/python27/python',
|
|
'virtualenv': ['c:/mozilla-build/python27/python', 'c:/mozilla-build/buildbotve/virtualenv.py'],
|
|
'hg': 'c:/mozilla-build/hg/hg',
|
|
'mozinstall': ['%s/build/venv/scripts/python' % os.getcwd(),
|
|
'%s/build/venv/scripts/mozinstall-script.py' % os.getcwd()],
|
|
'tooltool.py': [sys.executable, 'C:/mozilla-build/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-media-tests',
|
|
],
|
|
"default_blob_upload_servers": [
|
|
"https://blobupload.elasticbeanstalk.com",
|
|
],
|
|
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
|
"in_tree_config": "config/mozharness/marionette.py",
|
|
"download_minidump_stackwalk": True,
|
|
"download_symbols": "ondemand",
|
|
|
|
"suite_definitions": {
|
|
"media-tests": {
|
|
"options": [],
|
|
},
|
|
"media-youtube-tests": {
|
|
"options": [
|
|
"%(test_manifest)s"
|
|
],
|
|
},
|
|
},
|
|
}
|