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

Unified Diff: scripts/slave/recipes/skia/skia.py

Issue 1916263003: Reland "Skia: Maintain a checkout on swarming (compile) bots" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix expectations after roll Created 4 years, 8 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/skia/skia.py
diff --git a/scripts/slave/recipes/skia/skia.py b/scripts/slave/recipes/skia/skia.py
index 6254b1153c7b906267262ed0203badcc3a8cbacd..255a33cbcf0cd8f357565ae3603ae88e81bde458 100644
--- a/scripts/slave/recipes/skia/skia.py
+++ b/scripts/slave/recipes/skia/skia.py
@@ -150,7 +150,8 @@ def GenTests(api):
mastername='client.skia',
slavename='skiabot-linux-tester-000',
buildnumber=6) +
- api.step_data('dm', retcode=1)
+ api.step_data('dm', retcode=1) +
+ api.path.exists(api.path['slave_build'])
)
yield (
@@ -160,7 +161,8 @@ def GenTests(api):
slavename='skiabot-linux-compile-000') +
api.step_data(
'has ccache?',
- stdout=api.json.output({'ccache':'/usr/bin/ccache'}))
+ stdout=api.json.output({'ccache':'/usr/bin/ccache'})) +
+ api.path.exists(api.path['slave_build'])
)
builder = 'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Debug'

Powered by Google App Engine
This is Rietveld 408576698