88df8d2e5a
- 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>
18 lines
509 B
Bash
Executable File
18 lines
509 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Copyright 2018 Google Inc.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -e
|
|
|
|
# Change to the root and remove previously added build assets from the source
|
|
# tree of the SKQP app.
|
|
cd "$(dirname "$0")/../.."
|
|
cd platform_tools/android/apps
|
|
git clean -fxd skqp/build \
|
|
skqp/src/main/assets/gmkb \
|
|
skqp/src/main/assets/resources \
|
|
skqp/src/main/libs \
|
|
.gradle build viewer/build
|