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

Unified Diff: scripts/slave/recipes/gpu/build_and_upload.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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/gpu/build_and_upload.py
diff --git a/scripts/slave/recipes/gpu/build_and_upload.py b/scripts/slave/recipes/gpu/build_and_upload.py
index d9a5da0bdc03e6c24a75920239d63f426b1b176e..db99dcf1b7ecc3e789e27103240f480388cf42a8 100644
--- a/scripts/slave/recipes/gpu/build_and_upload.py
+++ b/scripts/slave/recipes/gpu/build_and_upload.py
@@ -26,12 +26,14 @@ def GenTests(api):
# Keep the additional properties in sync with the download_and_test
# recipe in order to catch regressions.
for plat in ['win', 'mac', 'linux']:
- yield (
- api.test('%s_release' % plat) +
- api.properties.scheduled(
- build_config='Release',
- mastername='chromium.gpu.testing',
- buildername='%s builder' % plat,
- buildnumber=571) +
- api.platform.name(plat)
- )
+ for flavor in ['Debug', 'Release']:
+ flavor_lower = flavor.lower()
+ yield (
+ api.test('%s_%s' % (plat, flavor_lower)) +
+ api.properties.scheduled(
+ build_config=flavor,
+ mastername='chromium.gpu.testing',
+ buildername='%s %s builder' % (plat, flavor_lower),
+ buildnumber=571) +
+ api.platform.name(plat)
+ )

Powered by Google App Engine
This is Rietveld 408576698