skia2/infra/bots/recipes/upload_skiaserve.py
Eric Boren 90f050387a [recipes] Rename some modules and files
- Move doxygen and binary size out of core and into their own modules.
- Rename core -> checkout since that's all it does, shorten method names.
- Rename flavors:
  - Everything is GN, so remove GN/gn_ everywhere.
  - Merge gn_flavor into default.
  - Shorten file / module names.

Bug: skia:6473
Change-Id: I8ac9ff9c9a267f366206b9991adfa5eb37126ca7
Reviewed-on: https://skia-review.googlesource.com/129176
Commit-Queue: Eric Boren <borenet@google.com>
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
2018-05-24 14:06:55 +00:00

61 lines
1.7 KiB
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.
# Recipe for uploading skiaserve to gs://skia-public-binaries.
DEPS = [
'flavor',
'gsutil',
'recipe_engine/context',
'recipe_engine/file',
'recipe_engine/path',
'recipe_engine/properties',
'recipe_engine/step',
'recipe_engine/time',
'vars',
]
def RunSteps(api):
api.vars.setup()
if api.properties.get('patch_issue') or api.properties.get('patch_set'):
# Do not upload skiaserve for trybots.
return
src = api.vars.build_dir.join('out', api.vars.configuration, 'skiaserve')
target_arch = api.vars.builder_cfg.get('target_arch')
dest = 'gs://skia-public-binaries/skiaserve/%s/%s/' % (
target_arch, api.properties['revision'])
api.gsutil.cp('skiaserve', src, dest)
def GenTests(api):
builder = 'Build-Debian9-Clang-arm-Release-Android'
yield (
api.test('normal_bot') +
api.properties(buildername=builder,
repository='https://skia.googlesource.com/skia.git',
swarm_out_dir='[SWARM_OUT_DIR]',
revision='abc123',
path_config='kitchen')
)
yield (
api.test('trybot') +
api.properties(buildername=builder,
repository='https://skia.googlesource.com/skia.git',
swarm_out_dir='[SWARM_OUT_DIR]',
revision='abc123',
path_config='kitchen',
patch_storage='gerrit') +
api.properties.tryserver(
buildername=builder,
gerrit_project='skia',
gerrit_url='https://skia-review.googlesource.com/',
)
)