• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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
6	docker push gcr.io/skia-public/skia-build-tools:latest
7
8CMAKE_VERSION=3.29.0_v1
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}
14