mac_taskcluster_config.py (1400B)
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 # Configuration over-rides for prod_config.py, for osx 6 import os 7 import sys 8 9 ##### 10 config = { 11 "tooltool_cache": "/builds/tooltool_cache", 12 "run_cmd_checks_enabled": True, 13 "preflight_run_cmd_suites": [ 14 { 15 "name": "verify refresh rate", 16 "cmd": [ 17 sys.executable, 18 os.path.join( 19 os.getcwd(), 20 "mozharness", 21 "external_tools", 22 "macosx_resolution_refreshrate.py", 23 ), 24 "--check=refresh-rate", 25 ], 26 "architectures": ["64bit"], 27 "halt_on_failure": True, 28 "enabled": True, 29 }, 30 { 31 "name": "verify screen resolution", 32 "cmd": [ 33 sys.executable, 34 os.path.join( 35 os.getcwd(), 36 "mozharness", 37 "external_tools", 38 "macosx_resolution_refreshrate.py", 39 ), 40 "--check=resolution", 41 ], 42 "architectures": ["64bit"], 43 "halt_on_failure": True, 44 "enabled": True, 45 }, 46 ], 47 }