d618027eaf
As long as I'm updating the image, update Chrome from 68 to 72 Bug: skia:8844 Change-Id: Ia62ffb062b2c137c89f6e4eb3be30c22ca375bae Reviewed-on: https://skia-review.googlesource.com/c/skia/+/200508 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com>
19 lines
739 B
Makefile
19 lines
739 B
Makefile
EMSDK_VERSION=1.38.27_v1
|
|
|
|
# Can check CHROME_VERSION with
|
|
# docker run karma-chrome-tests /usr/bin/google-chrome-stable --version
|
|
CHROME_VERSION=72.0.3626.121_v1
|
|
|
|
publish_emsdk_base:
|
|
docker build --no-cache -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}
|
|
docker tag emsdk-base gcr.io/skia-public/emsdk-release:prod
|
|
docker push gcr.io/skia-public/emsdk-release: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}
|
|
|