OLD | NEW |
---|---|
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 slaves = [ | 5 slaves = [ |
6 { | 6 { |
7 'master': 'ChromiumGPUFYI', | 7 'master': 'ChromiumGPUFYI', |
8 'hostname': 'build50-m1', | 8 'hostname': 'build50-m1', |
9 'builder': 'GPU Win Builder', | 9 'builder': 'GPU Win Builder', |
10 'os': 'win', | 10 'os': 'win', |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
279 'bits': '64', | 279 'bits': '64', |
280 }, | 280 }, |
281 { | 281 { |
282 'master': 'ChromiumGPUFYI', | 282 'master': 'ChromiumGPUFYI', |
283 'hostname': 'chromeperf22', | 283 'hostname': 'chromeperf22', |
284 'builder': 'Linux Audio', | 284 'builder': 'Linux Audio', |
285 'os': 'linux', | 285 'os': 'linux', |
286 'version': 'precise', | 286 'version': 'precise', |
287 'bits': '64', | 287 'bits': '64', |
288 }, | 288 }, |
289 { | |
290 'master': 'ChromiumGPUFYI', | |
291 'hostname': 'slave60-c1', | |
292 'builder': 'GPU NextGen Linux Builder', | |
293 'os': 'linux', | |
294 'version': 'precise', | |
295 'bits': '64', | |
296 'recipe': 'chromium', | |
297 'build_config': 'Release', | |
298 }, | |
299 { | |
300 'master': 'ChromiumGPUFYI', | |
301 'hostname': 'slave61-c1', | |
302 'builder': 'GPU NextGen Linux Builder (dbg)', | |
303 'os': 'linux', | |
304 'version': 'precise', | |
305 'bits': '64', | |
306 'recipe': 'chromium', | |
307 'build_config': 'Debug', | |
308 }, | |
309 { | |
310 'master': 'ChromiumGPUFYI', | |
311 'hostname': 'slave62-c1', | |
312 'builder': 'Linux NextGen Release (NVIDIA)', | |
313 'os': 'linux', | |
314 'version': 'precise', | |
315 'bits': '64', | |
316 'recipe': 'chromium', | |
317 'build_config': 'Release', | |
318 # TODO(kbr): is this needed or will it conflict with the Chromium | |
Ken Russell (switch to Gerrit)
2015/12/29 03:35:52
I'm 99% sure that in order for these new testers t
tandrii(chromium)
2015/12/29 11:19:30
i'm with you here, but also for 99% - don't know f
Sergey Berezin
2015/12/29 18:25:36
I looked at it together with dnj@, and apparently
Ken Russell (switch to Gerrit)
2015/12/30 02:05:22
recipe_master_helper.py, which is used to set up t
| |
319 # recipe's triggering mechanism? | |
320 'triggered_by': 'GPU NextGen Linux Builder', | |
321 }, | |
322 { | |
323 'master': 'ChromiumGPUFYI', | |
324 'hostname': 'slave63-c1', | |
325 'builder': 'Linux NextGen Debug (NVIDIA)', | |
326 'os': 'linux', | |
327 'version': 'precise', | |
328 'bits': '64', | |
329 'recipe': 'chromium', | |
330 'build_config': 'Debug', | |
331 # TODO(kbr): is this needed or will it conflict with the Chromium | |
332 # recipe's triggering mechanism? | |
333 'triggered_by': 'GPU NextGen Linux Builder (dbg)', | |
334 }, | |
335 { | |
336 'master': 'ChromiumGPUFYI', | |
337 'hostname': 'vm71-m1', | |
338 'builder': 'GPU NextGen Mac Builder', | |
339 'os': 'mac', | |
340 'version': '10.10', | |
341 'bits': '64', | |
342 'recipe': 'chromium', | |
343 'build_config': 'Release', | |
344 }, | |
345 { | |
346 'master': 'ChromiumGPUFYI', | |
347 'hostname': 'vm72-m1', | |
348 'builder': 'GPU NextGen Mac Builder (dbg)', | |
349 'os': 'mac', | |
350 'version': '10.10', | |
351 'bits': '64', | |
352 'recipe': 'chromium', | |
353 'build_config': 'Debug', | |
354 }, | |
355 { | |
356 'master': 'ChromiumGPUFYI', | |
357 'hostname': 'vm73-m1', | |
358 'builder': 'Mac NextGen 10.10 Retina Release (AMD)', | |
359 'os': 'mac', | |
360 'version': '10.10', | |
361 'bits': '64', | |
362 'recipe': 'chromium', | |
363 'build_config': 'Release', | |
364 # TODO(kbr): is this needed or will it conflict with the Chromium | |
365 # recipe's triggering mechanism? | |
366 'triggered_by': 'GPU NextGen Mac Builder', | |
367 }, | |
368 { | |
369 'master': 'ChromiumGPUFYI', | |
370 'hostname': 'vm74-m1', | |
371 'builder': 'Mac NextGen 10.10 Retina Debug (AMD)', | |
372 'os': 'mac', | |
373 'version': '10.10', | |
374 'bits': '64', | |
375 'recipe': 'chromium', | |
376 'build_config': 'Debug', | |
377 # TODO(kbr): is this needed or will it conflict with the Chromium | |
378 # recipe's triggering mechanism? | |
379 'triggered_by': 'GPU NextGen Mac Builder (dbg)', | |
380 }, | |
289 ] | 381 ] |
OLD | NEW |