102dbf9c43
This required an update to emscripten, due to there being a few bug fixes regarding the non-dynamic code and the Closure compiler/minifier. Change-Id: Icc922bd98cdd52a6923a9367da3747dac2b897b3 Bug: skia:12795 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/492916 Reviewed-by: Nathaniel Nifong <nifong@google.com>
19 lines
724 B
Makefile
19 lines
724 B
Makefile
EMSDK_VERSION=3.1.3_v1
|
|
|
|
# Can check CHROME_VERSION with
|
|
# docker run karma-chrome-tests /usr/bin/google-chrome-stable --version
|
|
CHROME_VERSION=87.0.4280.88_v1
|
|
|
|
publish_emsdk_base:
|
|
docker build --no-cache -t emsdk-base ./emsdk-base/
|
|
docker tag emsdk-base gcr.io/skia-public/emsdk-base:${EMSDK_VERSION}
|
|
docker push gcr.io/skia-public/emsdk-base:${EMSDK_VERSION}
|
|
docker tag emsdk-base gcr.io/skia-public/emsdk-base:prod
|
|
docker push gcr.io/skia-public/emsdk-base:prod
|
|
|
|
publish_karma_chrome_tests:
|
|
docker build --no-cache -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}
|
|
|