mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 09:58:57 +00:00
26 lines
723 B
Python
26 lines
723 B
Python
# This is a config with generic releng related values
|
|
import os
|
|
|
|
config = {
|
|
"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",
|
|
|
|
"download_symbols": "ondemand",
|
|
"download_minidump_stackwalk": True,
|
|
"default_blob_upload_servers": [
|
|
"https://blobupload.elasticbeanstalk.com",
|
|
],
|
|
"blob_uploader_auth_file": os.path.join(os.getcwd(), "oauth.txt"),
|
|
}
|