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>
16 lines
667 B
Makefile
16 lines
667 B
Makefile
# TODO(kjlubick) add _v1 to this version to be like the others.
|
|
EMSDK_VERSION=1.38.6_jre
|
|
|
|
# Can check CHROME_VERSION with
|
|
# docker run karma-chrome-tests /usr/bin/google-chrome-stable --version
|
|
CHROME_VERSION=68.0.3440.106_v5
|
|
|
|
publish_emsdk_base:
|
|
docker build -t emsdk-base ./emsdk-base/
|
|
docker tag emsdk-base gcr.io/skia-public/emsdk-release:${EMSDK_VERSION}
|
|
docker push gcr.io/skia-public/emsdk-release:${EMSDK_VERSION}
|
|
|
|
publish_karma_chrome_tests:
|
|
docker build -t karma-chrome-tests ./karma-chrome-tests/
|
|
docker tag karma-chrome-tests gcr.io/skia-public/karma-chrome-tests:${CHROME_VERSION}
|
|
docker push gcr.io/skia-public/karma-chrome-tests:${CHROME_VERSION}
|