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

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

Issue 132853003: Added support for properly building and running isolates in recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 testers on the 5 # This recipe is intended to control all of the GPU testers on the
6 # following waterfalls: 6 # following waterfalls:
7 # chromium.gpu 7 # chromium.gpu
8 # chromium.gpu.fyi 8 # chromium.gpu.fyi
9 # chromium.webkit 9 # chromium.webkit
10 # These testers are triggered by the builders on the same waterfall. 10 # These testers are triggered by the builders on the same waterfall.
(...skipping 28 matching lines...) Expand all
39 api.test('%s_release' % plat) + 39 api.test('%s_release' % plat) +
40 api.properties.scheduled( 40 api.properties.scheduled(
41 build_config='Release', 41 build_config='Release',
42 mastername='chromium.gpu.testing', 42 mastername='chromium.gpu.testing',
43 buildername='%s tester' % plat, 43 buildername='%s tester' % plat,
44 buildnumber=776, 44 buildnumber=776,
45 parent_buildername='%s builder' % plat, 45 parent_buildername='%s builder' % plat,
46 parent_buildnumber=571, 46 parent_buildnumber=571,
47 parent_got_revision=160000, 47 parent_got_revision=160000,
48 parent_got_webkit_revision=10000, 48 parent_got_webkit_revision=10000,
49 # These would ordinarily be generated during the build step.
50 swarm_hashes=dict(
51 gl_tests='6e784864abbeeff7499c15f75b904851d633c187'),
49 ) + 52 ) +
50 api.platform.name(plat) 53 api.platform.name(plat)
51 ) 54 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698