747c321922
Bug: skia:12256 Change-Id: Ic5cad6d6e5e7155f0adc26fca9f1172f33ce3b3a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/431260 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
13 lines
557 B
Makefile
13 lines
557 B
Makefile
# Build gcr.io/skia-public/skia-build-tools:latest, the image used to compile
|
|
# Skia in Google Cloud Build.
|
|
push-skia-build-tools:
|
|
docker build -t skia-build-tools ./skia-build-tools
|
|
docker tag skia-build-tools gcr.io/skia-public/skia-build-tools:latest
|
|
docker push gcr.io/skia-public/skia-build-tools:latest
|
|
|
|
CMAKE_VERSION=3.13.4_v4
|
|
|
|
push-cmake-release:
|
|
docker build --no-cache --tag cmake-release ./cmake-release
|
|
docker tag cmake-release gcr.io/skia-public/cmake-release:${CMAKE_VERSION}
|
|
docker push gcr.io/skia-public/cmake-release:${CMAKE_VERSION}
|