2016-09-23 13:37:57 +00:00
|
|
|
# Copyright 2016 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.
|
|
|
|
|
|
|
|
|
|
|
|
# Recipe for uploading nanobench results.
|
|
|
|
|
|
|
|
|
|
|
|
DEPS = [
|
|
|
|
'recipe_engine/properties',
|
2017-02-02 14:02:37 +00:00
|
|
|
'upload_nano_results',
|
2016-09-23 13:37:57 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def RunSteps(api):
|
2017-01-12 13:15:38 +00:00
|
|
|
api.upload_nano_results.run()
|
2016-09-23 13:37:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def GenTests(api):
|
|
|
|
yield (
|
2017-01-12 13:46:20 +00:00
|
|
|
api.test('upload') +
|
|
|
|
api.properties(buildername='Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
|
2017-02-06 20:38:41 +00:00
|
|
|
gs_bucket='skia-perf',
|
2016-09-23 13:37:57 +00:00
|
|
|
revision='abc123',
|
|
|
|
path_config='kitchen')
|
|
|
|
)
|