dec4c0b298
`example.py` is going away; examples folder can now hold multiple example recipes. R=borenet@google.com Bug: skia: Change-Id: Ib28910987342217bc52040d4d966444174ce27a3 Reviewed-on: https://skia-review.googlesource.com/18432 Commit-Queue: Eric Boren <borenet@google.com> Reviewed-by: Eric Boren <borenet@google.com>
26 lines
512 B
Python
26 lines
512 B
Python
# Copyright 2017 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
DEPS = [
|
|
'ct',
|
|
'recipe_engine/path',
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
api.ct.download_swarming_skps(
|
|
'All', '0', 'abc123',
|
|
api.path['start_dir'].join('skps'),
|
|
start_range=100,
|
|
num_skps=100)
|
|
|
|
|
|
def GenTests(api):
|
|
yield api.test('test')
|
|
yield (
|
|
api.test('failed_gsutil') +
|
|
api.step_data('gsutil cp', retcode=1)
|
|
)
|