mirror of
https://github.com/golang/go
synced 2024-11-18 19:54:44 -07:00
bdd8ae38fd
* Build Go from a given version (make.bash) * Add a /buildinfo file that describes the inputs of the build/deployment. * Use Makefile/environment variables to override Go version and Docker tag. Updates golang/go#27205. Change-Id: Ia7a88b75f9d5b2319d2381e56bc963eb53e889c7 Reviewed-on: https://go-review.googlesource.com/c/138978 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# Copyright 2018 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
.PHONY: usage
|
|
|
|
GO_REF ?= release-branch.go1.11
|
|
TOOLS_HEAD := $(shell git rev-parse HEAD)
|
|
TOOLS_CLEAN := $(shell (git status --porcelain | grep -q .) && echo dirty || echo clean)
|
|
ifeq ($(TOOLS_CLEAN),clean)
|
|
DOCKER_VERSION ?= $(TOOLS_HEAD)
|
|
else
|
|
DOCKER_VERSION ?= $(TOOLS_HEAD)-dirty
|
|
endif
|
|
GCP_PROJECT := golang-org
|
|
DOCKER_TAG := gcr.io/$(GCP_PROJECT)/godoc:$(DOCKER_VERSION)
|
|
|
|
usage:
|
|
echo "See Makefile and README.godoc-app"
|
|
exit 1
|
|
|
|
docker: Dockerfile.prod
|
|
# NOTE(cbro): move up in directory to include entire tools repo.
|
|
cd ../..; docker build \
|
|
-f cmd/godoc/Dockerfile.prod \
|
|
--build-arg GO_REF=$(GO_REF) \
|
|
--build-arg TOOLS_HEAD=$(TOOLS_HEAD) \
|
|
--build-arg TOOLS_CLEAN=$(TOOLS_CLEAN) \
|
|
--build-arg DOCKER_TAG=$(DOCKER_TAG) \
|
|
--tag=$(DOCKER_TAG) \
|
|
.
|
|
|
|
push: docker
|
|
docker push $(DOCKER_TAG)
|
|
|
|
deploy: push
|
|
gcloud -q app deploy app.prod.yaml \
|
|
--project $(GCP_PROJECT) \
|
|
--no-promote \
|
|
--image-url $(DOCKER_TAG)
|
|
|
|
get-latest-url:
|
|
@gcloud app versions list \
|
|
-s default \
|
|
--project $(GCP_PROJECT) \
|
|
--sort-by=~version.createTime \
|
|
--format='value(version.versionUrl)' \
|
|
--limit 1 | cut -f1 # NOTE(cbro): gcloud prints out createTime as the second field.
|
|
|
|
regtest:
|
|
./regtest.bash $(shell make get-latest-url)
|