2019-10-14 18:47:11 +00:00
|
|
|
# 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
|
2021-07-22 20:29:11 +00:00
|
|
|
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}
|
2022-01-28 16:19:09 +00:00
|
|
|
docker push gcr.io/skia-public/cmake-release:${CMAKE_VERSION}
|