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

Side by Side Diff: scripts/slave/recipes/gpu/build_and_test.py

Issue 137993010: Added support for properly building and running isolates in recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Added missed files. Created 6 years, 11 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
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 # This recipe is intended to control all of the GPU related bots: 5 # This recipe is intended to control all of the GPU related bots:
6 # chromium.gpu 6 # chromium.gpu
7 # chromium.gpu.fyi 7 # chromium.gpu.fyi
8 # The GPU bots on the chromium.webkit waterfall 8 # The GPU bots on the chromium.webkit waterfall
9 # The GPU bots on the tryserver.chromium waterfall 9 # The GPU bots on the tryserver.chromium waterfall
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 # Test one configuration skipping the checkout. 82 # Test one configuration skipping the checkout.
83 yield ( 83 yield (
84 api.test('mac_release_skip_checkout') + 84 api.test('mac_release_skip_checkout') +
85 api.properties.git_scheduled(build_config='Release', skip_checkout=True) + 85 api.properties.git_scheduled(build_config='Release', skip_checkout=True) +
86 api.platform.name('mac') 86 api.platform.name('mac')
87 ) 87 )
88 88
89 # Test one configuration skipping the compile. 89 # Test one configuration skipping the compile.
90 yield ( 90 yield (
91 api.test('mac_release_skip_compile') + 91 api.test('mac_release_skip_compile') +
92 api.properties.git_scheduled(build_config='Release', skip_compile=True) + 92 api.properties.git_scheduled(
93 build_config='Release',
94 skip_compile=True,
95 # These would ordinarily be generated during the build step.
96 swarm_hashes=dict(
97 gl_tests='6e784864abbeeff7499c15f75b904851d633c187')) +
93 api.platform.name('mac') 98 api.platform.name('mac')
94 ) 99 )
95 100
96 # Bail when apply_issue fails 101 # Bail when apply_issue fails
97 yield ( 102 yield (
98 api.test('bail_on_bad_patch') + 103 api.test('bail_on_bad_patch') +
99 api.properties.tryserver( 104 api.properties.tryserver(
100 build_config='Release', 105 build_config='Release',
101 root='src/third_party/WebKit') + 106 root='src/third_party/WebKit') +
102 api.platform.name('mac') + 107 api.platform.name('mac') +
103 api.step_data('apply_issue', retcode=1) 108 api.step_data('apply_issue', retcode=1)
104 ) 109 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/isolate/api.py ('k') | scripts/slave/recipes/gpu/build_and_test.expected/linux_debug.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698