| OLD | NEW |
| 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 Loading... |
| 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 ) |
| OLD | NEW |