skia2/infra/bots/recipes/upload_nano_results.py
Eric Boren 965861bf47 Make recipes upload results to bucket specified in top-level config
BUG=skia:6070

Change-Id: I67c040239ca2cf77a7430aa1a45b1bb69fef3b91
Reviewed-on: https://skia-review.googlesource.com/8069
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
2017-02-06 21:40:03 +00:00

27 lines
585 B
Python

# 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',
'upload_nano_results',
]
def RunSteps(api):
api.upload_nano_results.run()
def GenTests(api):
yield (
api.test('upload') +
api.properties(buildername='Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
gs_bucket='skia-perf',
revision='abc123',
path_config='kitchen')
)