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

Side by Side Diff: scripts/slave/recipes/skia/housekeeper_percommit.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, 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 5
6 # Recipe for the Skia PerCommit Housekeeper. 6 # Recipe for the Skia PerCommit Housekeeper.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'recipe_engine/path', 10 'recipe_engine/path',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 abort_on_failure=False) 57 abort_on_failure=False)
58 58
59 def GenTests(api): 59 def GenTests(api):
60 buildername = 'Housekeeper-PerCommit' 60 buildername = 'Housekeeper-PerCommit'
61 mastername = 'client.skia.fyi' 61 mastername = 'client.skia.fyi'
62 slavename = 'skiabot-linux-housekeeper-000' 62 slavename = 'skiabot-linux-housekeeper-000'
63 yield ( 63 yield (
64 api.test(buildername) + 64 api.test(buildername) +
65 api.properties(buildername=buildername, 65 api.properties(buildername=buildername,
66 mastername=mastername, 66 mastername=mastername,
67 slavename=slavename) 67 slavename=slavename) +
68 api.path.exists(api.path['slave_build'])
68 ) 69 )
69 70
70 buildername = 'Housekeeper-PerCommit-Trybot' 71 buildername = 'Housekeeper-PerCommit-Trybot'
71 yield ( 72 yield (
72 api.test(buildername) + 73 api.test(buildername) +
73 api.properties(buildername=buildername, 74 api.properties(buildername=buildername,
74 mastername=mastername, 75 mastername=mastername,
75 slavename=slavename, 76 slavename=slavename,
76 issue=500) 77 issue=500) +
78 api.path.exists(api.path['slave_build'])
77 ) 79 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698