64_valgrind.py (937B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 import os 6 7 config = { 8 "default_actions": [ 9 "clobber", 10 "build", 11 "valgrind-test", 12 ], 13 "stage_platform": "linux64-valgrind", 14 #### 64 bit build specific ##### 15 "env": { 16 "MOZBUILD_STATE_PATH": os.path.join(os.getcwd(), ".mozbuild"), 17 "DISPLAY": ":2", 18 "HG_SHARE_BASE_DIR": "/builds/hg-shared", 19 "MOZ_OBJDIR": "%(abs_obj_dir)s", 20 "TINDERBOX_OUTPUT": "1", 21 "TOOLTOOL_CACHE": "/builds/tooltool_cache", 22 "TOOLTOOL_HOME": "/builds", 23 "MOZ_CRASHREPORTER_NO_REPORT": "1", 24 "LC_ALL": "C", 25 ## 64 bit specific 26 "PATH": "/usr/local/bin:/bin:\ 27 /usr/bin:/usr/local/sbin:/usr/sbin:/sbin", 28 }, 29 "mozconfig_variant": "valgrind", 30 }