2462788755
Bug: skia:9438 Change-Id: Ibea28d454bcc1c44dfb9ab82a2a8216342f3b8a7 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/281878 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Weston Tracey <westont@google.com>
159 lines
5.4 KiB
Python
159 lines
5.4 KiB
Python
# Copyright 2018 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.
|
|
|
|
|
|
import math
|
|
|
|
|
|
DEPS = [
|
|
'recipe_engine/context',
|
|
'recipe_engine/json',
|
|
'recipe_engine/path',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/raw_io',
|
|
'recipe_engine/step',
|
|
'run',
|
|
'vars',
|
|
]
|
|
|
|
CF_X86_PHONE_ENG_LUNCH_TARGET = 'cf_x86_phone-eng'
|
|
SDK_LUNCH_TARGET = 'sdk'
|
|
|
|
LUNCH_TARGET_TO_MMMA_TARGETS = {
|
|
CF_X86_PHONE_ENG_LUNCH_TARGET: (
|
|
'frameworks/base/core/jni,frameworks/base/libs/hwui,external/skia'),
|
|
SDK_LUNCH_TARGET: 'external/skia',
|
|
}
|
|
|
|
|
|
def RunSteps(api):
|
|
api.vars.setup()
|
|
if not api.vars.is_trybot:
|
|
# This bot currently only supports trybot runs because:
|
|
# Non-trybot runs could fail if the Android tree is red. We mitigate this
|
|
# for trybot runs by verifying that runs without the patch succeed. We do
|
|
# not currently have a way to do the same for non-trybot runs.
|
|
raise Exception('%s can only be run as a trybot.' % api.vars.builder_name)
|
|
|
|
if CF_X86_PHONE_ENG_LUNCH_TARGET in api.vars.builder_name:
|
|
lunch_target = CF_X86_PHONE_ENG_LUNCH_TARGET
|
|
mmma_targets = LUNCH_TARGET_TO_MMMA_TARGETS[lunch_target]
|
|
elif SDK_LUNCH_TARGET in api.vars.builder_name:
|
|
lunch_target = SDK_LUNCH_TARGET
|
|
mmma_targets = LUNCH_TARGET_TO_MMMA_TARGETS[SDK_LUNCH_TARGET]
|
|
else:
|
|
raise Exception('Lunch target in %s is not recognized.' %
|
|
api.vars.builder_name)
|
|
|
|
infrabots_dir = api.path['start_dir'].join('skia', 'infra', 'bots')
|
|
trigger_wait_ac_script = infrabots_dir.join('android_compile',
|
|
'trigger_wait_ac_task.py')
|
|
|
|
# Trigger a compile task on the android compile server and wait for it to
|
|
# complete.
|
|
cmd = ['python', trigger_wait_ac_script,
|
|
'--lunch_target', lunch_target,
|
|
'--mmma_targets', mmma_targets,
|
|
'--issue', api.vars.issue,
|
|
'--patchset', api.vars.patchset,
|
|
'--builder_name', api.vars.builder_name,
|
|
]
|
|
try:
|
|
with api.context(cwd=api.path['start_dir'].join('skia')):
|
|
api.run(api.step, 'Trigger and wait for task on android compile server', cmd=cmd)
|
|
except api.step.StepFailure as e:
|
|
# Add withpatch and nopatch logs as links (if they exist).
|
|
gs_file = 'gs://android-compile-tasks/%s-%s-%s.json' % (
|
|
lunch_target, api.vars.issue, api.vars.patchset)
|
|
step_result = api.step('Get task log links',
|
|
['gsutil', 'cat', gs_file],
|
|
stdout=api.json.output())
|
|
task_json = step_result.stdout
|
|
if task_json.get('withpatch_log'):
|
|
api.step.active_result.presentation.links[
|
|
'withpatch compilation log link'] = task_json['withpatch_log']
|
|
if task_json.get('nopatch_log'):
|
|
api.step.active_result.presentation.links[
|
|
'nopatch compilation log link'] = task_json['nopatch_log']
|
|
# Add link to force sync of the Android checkout.
|
|
api.step.active_result.presentation.links['force sync link'] = (
|
|
'https://skia-android-compile.corp.goog/')
|
|
raise e
|
|
|
|
|
|
def GenTests(api):
|
|
yield(
|
|
api.test('android_compile_trybot') +
|
|
api.properties.tryserver(
|
|
gerrit_project='skia',
|
|
gerrit_url='https://skia-review.googlesource.com/',
|
|
) +
|
|
api.properties(
|
|
buildername='Build-Debian10-Clang-cf_x86_phone-eng-Android_Framework',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
)
|
|
)
|
|
|
|
yield(
|
|
api.test('android_compile_sdk_trybot') +
|
|
api.properties.tryserver(
|
|
gerrit_project='skia',
|
|
gerrit_url='https://skia-review.googlesource.com/',
|
|
) +
|
|
api.properties(
|
|
buildername='Build-Debian10-Clang-host-sdk-Android_Framework',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
)
|
|
)
|
|
|
|
yield(
|
|
api.test('android_compile_unrecognized_target') +
|
|
api.properties.tryserver(
|
|
gerrit_project='skia',
|
|
gerrit_url='https://skia-review.googlesource.com/',
|
|
) +
|
|
api.properties(
|
|
buildername='Build-Debian10-Clang-unrecognized-Android_Framework',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
) +
|
|
api.expect_exception('Exception')
|
|
)
|
|
|
|
yield(
|
|
api.test('android_compile_trybot_failure') +
|
|
api.properties.tryserver(
|
|
gerrit_project='skia',
|
|
gerrit_url='https://skia-review.googlesource.com/',
|
|
) +
|
|
api.properties(
|
|
buildername='Build-Debian10-Clang-cf_x86_phone-eng-Android_Framework',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
) +
|
|
api.step_data('Trigger and wait for task on android compile server',
|
|
retcode=1) +
|
|
api.step_data('Get task log links',
|
|
stdout=api.raw_io.output(
|
|
'{"withpatch_log":"link1", "nopatch_log":"link2"}'))
|
|
)
|
|
|
|
yield(
|
|
api.test('android_compile_nontrybot') +
|
|
api.properties(
|
|
buildername='Build-Debian10-Clang-cf_x86_phone-eng-Android_Framework',
|
|
path_config='kitchen',
|
|
swarm_out_dir='[SWARM_OUT_DIR]',
|
|
repository='https://skia.googlesource.com/skia.git',
|
|
revision='abc123',
|
|
) +
|
|
api.expect_exception('Exception')
|
|
)
|