556350de37
We have a similar ingestion strategy to Gold. I tried to use something off the shelf like benchmark.js but passing the PathKit context into the benchmarks was non-trivial. Plus, making a basic benchmarking tool ended up being not too hard. We should be able to re-use the docker container/aggregator for CanvasKit too. Bug: skia: Change-Id: I613dfc58ea57c31cf71566a8ac55f8df9272ad25 Reviewed-on: https://skia-review.googlesource.com/c/161620 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Joe Gregorio <jcgregorio@google.com> Reviewed-by: Stephan Altmueller <stephana@google.com>
9 lines
370 B
Docker
9 lines
370 B
Docker
# Docker container with Chrome, and karma/jasmine, to be used to run JS tests and
|
|
# collect output for Skia Infra's Perf tool.
|
|
#
|
|
# Tests will be run as non-root (user skia, in fact), so /OUT should have permissions
|
|
# 777 so as to be able to create output there.
|
|
|
|
FROM gcr.io/skia-public/karma-chrome-tests:68.0.3440.106_v5
|
|
|
|
COPY /tmp/perf-aggregator /opt/perf-aggregator |