Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
upload_nano_results.py
Go to the documentation of this file.
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
3# found in the LICENSE file.
4
5
6# Recipe for uploading nanobench results.
7
8PYTHON_VERSION_COMPATIBILITY = "PY3"
9
10DEPS = [
11 'recipe_engine/context',
12 'recipe_engine/file',
13 'recipe_engine/path',
14 'recipe_engine/properties',
15 'recipe_engine/step',
16 'recipe_engine/time',
17 'vars',
18]
19
20
21def RunSteps(api):
22 # Upload the nanobench results.
23 api.vars.setup()
24
25 now = api.time.utcnow()
26 src_path = api.path['start_dir'].join('perf')
27 with api.context(cwd=src_path):
28 results = api.file.glob_paths(
29 'find results',
30 src_path,
31 '*.json',
32 test_data=['nanobench_abc123.json'])
33 if len(results) != 1: # pragma: nocover
34 raise Exception('Unable to find nanobench or skpbench JSON file!')
35
36 src = results[0]
37 basename = api.path.basename(src)
38 gs_path = '/'.join((
39 'nano-json-v1', str(now.year).zfill(4),
40 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
41 api.vars.builder_name))
42
43 if api.vars.is_trybot:
44 gs_path = '/'.join(('trybot', gs_path,
45 str(api.vars.issue), str(api.vars.patchset)))
46
47 dst = '/'.join((
48 'gs://%s' % api.properties['gs_bucket'], gs_path, basename))
49
50 api.step(
51 'upload',
52 cmd=['gsutil', 'cp', '-z', 'json', src, dst],
53 infra_step=True)
54
55
56def GenTests(api):
57 builder = 'Perf-Debian10-Clang-GCE-CPU-AVX2-x86_64-All-Debug'
58 yield (
59 api.test('normal_bot') +
60 api.properties(buildername=builder,
61 gs_bucket='skia-perf',
62 revision='abc123',
63 path_config='kitchen')
64 )
65
66 yield (
67 api.test('trybot') +
68 api.properties(buildername=builder,
69 gs_bucket='skia-perf',
70 revision='abc123',
71 path_config='kitchen') +
72 api.properties.tryserver(
73 buildername=builder,
74 gerrit_project='skia',
75 gerrit_url='https://skia-review.googlesource.com/',
76 )
77 )