37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
import os
|
|
import platform
|
|
|
|
PYTHON = "/usr/bin/env python"
|
|
VENV_PATH = '%s/build/venv' % os.getcwd()
|
|
if platform.architecture()[0] == '64bit':
|
|
TOOLTOOL_MANIFEST_PATH = "config/tooltool-manifests/linux64/releng.manifest"
|
|
MINIDUMP_STACKWALK_PATH = "linux64-minidump_stackwalk"
|
|
else:
|
|
TOOLTOOL_MANIFEST_PATH = "config/tooltool-manifests/linux32/releng.manifest"
|
|
MINIDUMP_STACKWALK_PATH = "linux32-minidump_stackwalk"
|
|
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
|
BINARY_PATH = os.path.join(ABS_WORK_DIR, "application", "firefox", "firefox-bin")
|
|
INSTALLER_PATH = os.path.join(ABS_WORK_DIR, "installer.tar.bz2")
|
|
|
|
config = {
|
|
"log_name": "awsy",
|
|
"binary_path": BINARY_PATH,
|
|
"installer_path": INSTALLER_PATH,
|
|
"virtualenv_path": VENV_PATH,
|
|
"cmd_timeout": 6500,
|
|
"exes": {
|
|
},
|
|
"title": os.uname()[1].lower().split('.')[0],
|
|
"default_actions": [
|
|
"clobber",
|
|
"download-and-extract",
|
|
"populate-webroot",
|
|
"create-virtualenv",
|
|
"install",
|
|
"run-tests",
|
|
],
|
|
"minidump_stackwalk_path": MINIDUMP_STACKWALK_PATH,
|
|
"minidump_tooltool_manifest_path": TOOLTOOL_MANIFEST_PATH,
|
|
"tooltool_cache": os.path.join(os.getcwd(), "tooltool_cache"),
|
|
}
|