Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: masters/master.chromium.lkgr/master_lkgr_cfg.py

Issue 2055503003: lkgr: Convert mac asan bots to recipes/ (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from master import gitiles_poller 5 from master import gitiles_poller
6 from master import master_config 6 from master import master_config
7 from master.factory import annotator_factory 7 from master.factory import annotator_factory
8 from master.factory import chromium_factory 8 from master.factory import chromium_factory
9 9
10 import master_site_config 10 import master_site_config
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 B('Win SyzyASAN LKGR', 'win_syzyasan_lkgr', 'compile', 'chromium_lkgr') 55 B('Win SyzyASAN LKGR', 'win_syzyasan_lkgr', 'compile', 'chromium_lkgr')
56 F('win_syzyasan_lkgr', m_annotator.BaseFactory(recipe='chromium', timeout=7200)) 56 F('win_syzyasan_lkgr', m_annotator.BaseFactory(recipe='chromium', timeout=7200))
57 57
58 ################################################################################ 58 ################################################################################
59 ## Mac 59 ## Mac
60 ################################################################################ 60 ################################################################################
61 61
62 asan_mac_gyp = 'asan=1 v8_enable_verify_heap=1 enable_ipc_fuzzer=1 ' 62 asan_mac_gyp = 'asan=1 v8_enable_verify_heap=1 enable_ipc_fuzzer=1 '
63 63
64 B('Mac ASAN Release', 'mac_asan_rel', 'compile', 'chromium_lkgr') 64 B('Mac ASAN Release', 'mac_asan_rel', 'compile', 'chromium_lkgr')
65 F('mac_asan_rel', linux().ChromiumASANFactory( 65 F('mac_asan_rel', m_annotator.BaseFactory(recipe='chromium'))
66 clobber=True,
67 options=['--compiler=goma-clang', '--', '-target', 'chromium_builder_asan'],
68 factory_properties={
69 'cf_archive_build': ActiveMaster.is_production_host,
70 'cf_archive_name': 'asan',
71 'gs_bucket': 'gs://chromium-browser-asan',
72 'gs_acl': 'public-read',
73 'gclient_env': {'GYP_DEFINES': asan_mac_gyp},
74 'use_mb': True,
75 }))
76 66
77 media_gyp = (' proprietary_codecs=1 ffmpeg_branding=Chrome')
78 B('Mac ASAN Release Media', 'mac_asan_rel_media', 'compile', 'chromium_lkgr') 67 B('Mac ASAN Release Media', 'mac_asan_rel_media', 'compile', 'chromium_lkgr')
79 F('mac_asan_rel_media', linux().ChromiumASANFactory( 68 F('mac_asan_rel_media', m_annotator.BaseFactory(recipe='chromium'))
80 clobber=True,
81 options=['--compiler=goma-clang', '--', '-target', 'chromium_builder_asan'],
82 factory_properties={
83 'cf_archive_build': ActiveMaster.is_production_host,
84 'cf_archive_name': 'asan',
85 'gs_bucket': 'gs://chrome-test-builds/media',
86 'gclient_env': {'GYP_DEFINES': asan_mac_gyp + media_gyp},
87 'use_mb': True,
88 }))
89 69
90 B('Mac ASAN Debug', 'mac_asan_dbg', 'compile', 'chromium_lkgr') 70 B('Mac ASAN Debug', 'mac_asan_dbg', 'compile', 'chromium_lkgr')
91 F('mac_asan_dbg', linux().ChromiumASANFactory( 71 F('mac_asan_dbg', m_annotator.BaseFactory(recipe='chromium'))
92 clobber=True,
93 target='Debug',
94 options=['--compiler=goma-clang', '--', '-target', 'chromium_builder_asan'],
95 factory_properties={
96 'cf_archive_build': ActiveMaster.is_production_host,
97 'cf_archive_name': 'asan',
98 'gs_bucket': 'gs://chromium-browser-asan',
99 'gs_acl': 'public-read',
100 'gclient_env': {'GYP_DEFINES': asan_mac_gyp +
101 ' component=static_library '},
102 'use_mb': True,
103 }))
104 72
105 ################################################################################ 73 ################################################################################
106 ## Linux 74 ## Linux
107 ################################################################################ 75 ################################################################################
108 76
109 asan_rel_gyp = ('asan=1 lsan=1 sanitizer_coverage=edge ' 77 asan_rel_gyp = ('asan=1 lsan=1 sanitizer_coverage=edge '
110 'v8_enable_verify_heap=1 enable_ipc_fuzzer=1 ') 78 'v8_enable_verify_heap=1 enable_ipc_fuzzer=1 ')
111 79
112 B('ASAN Release', 'linux_asan_rel', 'compile', 'chromium_lkgr') 80 B('ASAN Release', 'linux_asan_rel', 'compile', 'chromium_lkgr')
113 F('linux_asan_rel', linux().ChromiumASANFactory( 81 F('linux_asan_rel', linux().ChromiumASANFactory(
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 225
258 B('UBSan vptr Release', 'linux_ubsan_vptr_rel', 'compile', 'chromium_lkgr') 226 B('UBSan vptr Release', 'linux_ubsan_vptr_rel', 'compile', 'chromium_lkgr')
259 F('linux_ubsan_vptr_rel', m_annotator.BaseFactory(recipe='chromium')) 227 F('linux_ubsan_vptr_rel', m_annotator.BaseFactory(recipe='chromium'))
260 228
261 def Update(_config, active_master, c): 229 def Update(_config, active_master, c):
262 lkgr_poller = gitiles_poller.GitilesPoller( 230 lkgr_poller = gitiles_poller.GitilesPoller(
263 'https://chromium.googlesource.com/chromium/src', 231 'https://chromium.googlesource.com/chromium/src',
264 branches=['lkgr']) 232 branches=['lkgr'])
265 c['change_source'].append(lkgr_poller) 233 c['change_source'].append(lkgr_poller)
266 return helper.Update(c) 234 return helper.Update(c)
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698