skia2/infra/bots/recipes/skqp_test.py
Stephan Altmueller 88df8d2e5a Test SKQP on Firebase Testlab and Upload
- adds building the testlab driver (run_testlab) as a separate step
- adds gcloud isolate necessary to run testlab
- adds Testlab support and uploading a verified AKP to GCS (with
  meta data attached).

Bug: skia:
Change-Id: I1bf265f46c99360eb3a9eb684886f93de48085fe
Reviewed-on: https://skia-review.googlesource.com/111603
Reviewed-by: Eric Boren <borenet@google.com>
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Stephan Altmueller <stephana@google.com>
2018-03-07 20:44:50 +00:00

44 lines
1.2 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.
# Recipe module for Skia Swarming SKQP testing.
DEPS = [
'core',
'flavor',
'recipe_engine/properties',
'run',
'vars',
]
def test_firebase_steps(api):
"""Test an APK on Firebase Testlab."""
wlist_file = api.vars.slave_dir.join('whitelist_devices.json')
apk_file = api.vars.slave_dir.join('out','devrel','skqp-universal-debug.apk')
upload_path = 'skia-stephana-test/testing/skqp-universal-debug.apk'
args = [
'run_testlab',
'--logtostderr',
'--devices', wlist_file,
'--upload_path', upload_path,
apk_file
]
api.run(api.flavor.step, 'run firebase testlab', cmd=args)
def RunSteps(api):
api.core.setup()
test_firebase_steps(api)
api.run.check_failure()
def GenTests(api):
builder = 'Test-Debian9-Clang-GCE-CPU-AVX2-universal-devrel-All-Android_SKQP'
yield (
api.test(builder) +
api.properties(buildername=builder,
buildbucket_build_id='123454321',
revision='abc123',
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]')
)