2018-10-17 18:59:35 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2018 Google LLC
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
# This assumes it is being run inside a docker container of perf-karma-chrome-tests
|
|
|
|
# and a Skia checkout has been mounted at /SRC and the output directory
|
|
|
|
# is mounted at /OUT
|
|
|
|
|
|
|
|
# For example:
|
2019-03-12 18:06:19 +00:00
|
|
|
# docker run -v $SKIA_ROOT:/SRC -v /tmp/dockerout:/OUT gcr.io/skia-public/perf-karma-chrome-tests:72.0.3626.121_v1 /SRC/infra/canvaskit/perf_canvaskit.sh
|
2018-10-17 18:59:35 +00:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
#BASE_DIR is the dir this script is in ($SKIA_ROOT/infra/pathkit)
|
|
|
|
BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd`
|
2019-03-11 20:11:58 +00:00
|
|
|
CANVASKIT_DIR=$BASE_DIR/../../modules/canvaskit
|
2018-10-17 18:59:35 +00:00
|
|
|
|
|
|
|
# Start the aggregator in the background
|
|
|
|
/opt/perf-aggregator $@ &
|
|
|
|
# Run the tests 10 times to get a wide set of data
|
|
|
|
for i in `seq 1 10`;
|
|
|
|
do
|
2019-03-11 20:11:58 +00:00
|
|
|
npx karma start $CANVASKIT_DIR/karma.bench.conf.js --single-run
|
2018-10-17 18:59:35 +00:00
|
|
|
done
|
|
|
|
# Tell the aggregator to dump the json
|
|
|
|
# This curl command gets the HTTP code and stores it into $CODE
|
|
|
|
CODE=`curl -s -o /dev/null -I -w "%{http_code}" -X POST localhost:8081/dump_json`
|
|
|
|
if [ $CODE -ne 200 ]; then
|
|
|
|
# If we don't get 200 back, something is wrong with writing to disk, so exit with error
|
|
|
|
exit 1
|
|
|
|
fi
|