Joe Gregorio | 4cb778e | 2019-10-14 14:47:11 -0400 | [diff] [blame] | 1 | # Build gcr.io/skia-public/skia-build-tools:latest, the image used to compile |
| 2 | # Skia in Google Cloud Build. |
| 3 | push-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 Lubick | 747c321 | 2021-07-22 16:29:11 -0400 | [diff] [blame] | 6 | docker push gcr.io/skia-public/skia-build-tools:latest |
| 7 | |
| 8 | CMAKE_VERSION=3.13.4_v4 |
| 9 | |
| 10 | push-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} |