Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 684 'factory': m_annotator.BaseFactory( | 684 'factory': m_annotator.BaseFactory( |
| 685 'chromium_trybot', | 685 'chromium_trybot', |
| 686 { | 686 { |
| 687 'build_config': ('Release' if 'rel' in targ else 'Debug'), | 687 'build_config': ('Release' if 'rel' in targ else 'Debug'), |
| 688 'recipe_config': 'compile', | 688 'recipe_config': 'compile', |
| 689 }, | 689 }, |
| 690 timeout=3600 | 690 timeout=3600 |
| 691 ), | 691 ), |
| 692 # Share build directory with compatible existing builders to save space. | 692 # Share build directory with compatible existing builders to save space. |
| 693 'slavebuilddir': 'linux' | 693 'slavebuilddir': 'linux' |
| 694 }, { | |
| 695 'name': 'linux_chromium%s_ng' % targ, | |
| 696 'factory': m_annotator.BaseFactory( | |
| 697 'chromium_trybot', | |
| 698 { | |
| 699 'build_config': ('Release' if 'rel' in targ else 'Debug'), | |
|
iannucci
2014/09/16 20:20:44
in another CL: let's remove these and move them in
| |
| 700 }, | |
| 701 timeout=3600 | |
| 702 ), | |
| 703 # Share build directory with compatible existing builders to save space. | |
| 704 'slavebuilddir': 'linux' | |
| 694 }]) | 705 }]) |
| 695 | 706 |
| 696 # *_chromium_rel_swarming are identical to *_chromium_rel, but use Swarming | 707 # *_chromium_rel_swarming are identical to *_chromium_rel, but use Swarming |
| 697 # infrastructure to run some of the tests. | 708 # infrastructure to run some of the tests. |
| 698 chromium_builders.append({ | 709 chromium_builders.append({ |
| 699 'name': 'linux_chromium_rel_swarming', | 710 'name': 'linux_chromium_rel_swarming', |
| 700 'factory': m_annotator.BaseFactory( | 711 'factory': m_annotator.BaseFactory( |
| 701 'chromium_trybot', | 712 'chromium_trybot', |
| 702 { | 713 { |
| 703 'build_config': 'Release', | 714 'build_config': 'Release', |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1356 # base.make_stop_form = hack_stop(base.make_stop_form) | 1367 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 1357 | 1368 |
| 1358 | 1369 |
| 1359 ####### PROJECT IDENTITY | 1370 ####### PROJECT IDENTITY |
| 1360 | 1371 |
| 1361 # The 'projectURL' string will be used to provide a link | 1372 # The 'projectURL' string will be used to provide a link |
| 1362 # from buildbot HTML pages to your project's home page. | 1373 # from buildbot HTML pages to your project's home page. |
| 1363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1374 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 1364 | 1375 |
| 1365 # vi: set ts=4 sts=2 sw=2 et: | 1376 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |