| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 module for Skia Swarming test. | 6 # Recipe module for Skia Swarming test. |
| 7 | 7 |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'recipe_engine/json', | 10 'recipe_engine/json', |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 swarm_out_dir='[SWARM_OUT_DIR]', | 278 swarm_out_dir='[SWARM_OUT_DIR]', |
| 279 rietveld='https://codereview.chromium.org', | 279 rietveld='https://codereview.chromium.org', |
| 280 patchset=1, | 280 patchset=1, |
| 281 issue=2147533002L) + | 281 issue=2147533002L) + |
| 282 api.path.exists( | 282 api.path.exists( |
| 283 api.path['slave_build'].join('skia'), | 283 api.path['slave_build'].join('skia'), |
| 284 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 284 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 285 ) + | 285 ) + |
| 286 api.platform('win', 64) | 286 api.platform('win', 64) |
| 287 ) | 287 ) |
| 288 | |
| 289 builder = 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug' | |
| 290 yield ( | |
| 291 api.test('legacy_skimage_version') + | |
| 292 api.properties(buildername=builder, | |
| 293 mastername='client.skia', | |
| 294 slavename='skiabot-linux-swarm-000', | |
| 295 buildnumber=6, | |
| 296 revision='abc123', | |
| 297 swarm_out_dir='[SWARM_OUT_DIR]') + | |
| 298 api.path.exists( | |
| 299 api.path['slave_build'].join('skia'), | |
| 300 api.path['slave_build'].join('skia', 'SK_IMAGE_VERSION'), | |
| 301 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | |
| 302 ) | |
| 303 ) | |
| OLD | NEW |