blob: 3039c005f1d9f119a8ba1f975606f96217e5ff69 [file] [log] [blame]
Joe Gregorio4cb778e2019-10-14 14:47:11 -04001# Build gcr.io/skia-public/skia-build-tools:latest, the image used to compile
2# Skia in Google Cloud Build.
3push-skia-build-tools:
4 docker build -t skia-build-tools ./skia-build-tools
5 docker tag skia-build-tools gcr.io/skia-public/skia-build-tools:latest
Kevin Lubick747c3212021-07-22 16:29:11 -04006 docker push gcr.io/skia-public/skia-build-tools:latest
7
8CMAKE_VERSION=3.13.4_v4
9
10push-cmake-release:
11 docker build --no-cache --tag cmake-release ./cmake-release
12 docker tag cmake-release gcr.io/skia-public/cmake-release:${CMAKE_VERSION}
13 docker push gcr.io/skia-public/cmake-release:${CMAKE_VERSION}