skia2/tools/get_skia_lkgr.sh
benjaminwagner 964eebae2d Include resources directory in google3 sync.
Also other minor improvements in sync scripts.

In BUILD.public, include all files under resources as data dependencies for DM. Omit newly failing DM tests and add newly passing DM tests.

Adds the OpenClipart "license" to LICENSE per comment in google3 CL 100158380.

Corresponding google3 CL is 105602927.

BUG=skia:

Review URL: https://codereview.chromium.org/1406283002
2015-10-20 13:00:48 -07:00

25 lines
631 B
Bash
Executable File

#!/bin/bash
# Copyright 2014 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Outputs the Last Known Good Revision of Skia.
prodcertstatus -q || (echo "Please run prodaccess." 1>&2; exit 1)
source gbash.sh || exit 2
set -e
# Retrieve last known good revision. (App-engine script is very flaky, so retry
# 10 times.)
LKGR=""
for i in `seq 1 10`; do
LKGR=$(curl "http://skia-tree-status-staging.appspot.com/lkgr")
if [[ ${#LKGR} -gt 4 ]]; then
break
fi
done
[[ ${#LKGR} -gt 4 ]] || gbash::die "Unable to get Skia LKGR (got '${LKGR}')"
echo "${LKGR}"