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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 1930383002: build: add dependencies on infra_paths (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import collections 5 import collections
6 6
7 from recipe_engine.types import freeze 7 from recipe_engine.types import freeze
8 8
9 DEPS = [ 9 DEPS = [
10 'depot_tools/bot_update', 10 'depot_tools/bot_update',
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 swarm_hashes={} 785 swarm_hashes={}
786 ) + 786 ) +
787 api.platform.name('win') + 787 api.platform.name('win') +
788 api.override_step_data( 788 api.override_step_data(
789 'git diff to analyze patch', 789 'git diff to analyze patch',
790 api.raw_io.stream_output( 790 api.raw_io.stream_output(
791 'third_party/WebKit/Source/core/dom/Element.cpp\n') 791 'third_party/WebKit/Source/core/dom/Element.cpp\n')
792 ) 792 )
793 ) 793 )
794 794
795 yield (
796 api.test('swarming_paths') +
797 api.properties.tryserver(
798 mastername='tryserver.chromium.linux',
799 buildername='linux_chromium_rel_ng',
800 path_config='swarming',
801 ) +
802 api.platform.name('linux')
803 )
804
805 # This tests that if the first fails, but the second pass succeeds 795 # This tests that if the first fails, but the second pass succeeds
806 # that we fail the whole build. 796 # that we fail the whole build.
807 yield ( 797 yield (
808 api.test('blink_minimal_pass_continues') + 798 api.test('blink_minimal_pass_continues') +
809 props(mastername='tryserver.blink', 799 props(mastername='tryserver.blink',
810 buildername='linux_blink_rel') + 800 buildername='linux_blink_rel') +
811 suppress_analyze() + 801 suppress_analyze() +
812 api.platform.name('linux') + 802 api.platform.name('linux') +
813 api.override_step_data('webkit_tests (with patch)', 803 api.override_step_data('webkit_tests (with patch)',
814 api.test_utils.canned_test_output(passing=False)) + 804 api.test_utils.canned_test_output(passing=False)) +
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 props(mastername='tryserver.v8', 896 props(mastername='tryserver.v8',
907 buildername='v8_linux_blink_rel', 897 buildername='v8_linux_blink_rel',
908 patch_project='v8') + 898 patch_project='v8') +
909 api.platform.name('linux') + 899 api.platform.name('linux') +
910 suppress_analyze(more_exclusions=['v8/f.*']) + 900 suppress_analyze(more_exclusions=['v8/f.*']) +
911 api.override_step_data('webkit_tests (with patch)', 901 api.override_step_data('webkit_tests (with patch)',
912 api.test_utils.canned_test_output(passing=False)) + 902 api.test_utils.canned_test_output(passing=False)) +
913 api.override_step_data('webkit_tests (without patch)', 903 api.override_step_data('webkit_tests (without patch)',
914 api.test_utils.canned_test_output(passing=True, minimal=True)) 904 api.test_utils.canned_test_output(passing=True, minimal=True))
915 ) 905 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/repo/__init__.py ('k') | scripts/slave/recipes/chromium_trybot.expected/swarming_paths.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698