playground: simplify latest go version logic

This changes the build process to use a newly-added latestgo command for
determining the latest version of Go. This simplifies the Cloud Build
deploy.json significantly.

latestgo fetches the latest supported Go releases from maintner,
returning the first one. The maintner API always returns at least 2
releases on success, with the first result being the latest supported Go
release.

Updates golang/go#32606

Change-Id: I9da9101368ac4edfd7651e3f996b5f2dbe51b6c4
Reviewed-on: https://go-review.googlesource.com/c/playground/+/185437
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
4 files changed
tree: f385e492298c4e7d99fb004e1bf3b159d79c4fde
  1. cmd/
  2. deploy/
  3. static/
  4. app.yaml
  5. AUTHORS
  6. cache.go
  7. client.go
  8. codereview.cfg
  9. CONTRIBUTING.md
  10. CONTRIBUTORS
  11. Dockerfile
  12. edit.go
  13. edit.html
  14. enable-fake-time.patch
  15. fake_fs.lst
  16. fmt.go
  17. fmt_test.go
  18. go.mod
  19. go.sum
  20. LICENSE
  21. logger.go
  22. main.go
  23. Makefile
  24. PATENTS
  25. play.go
  26. play_test.go
  27. README.md
  28. sandbox.go
  29. server.go
  30. server_test.go
  31. share.go
  32. store.go
  33. tests.go
  34. txtar.go
  35. txtar_test.go
  36. vet.go
README.md

playground

This subrepository holds the source for the Go playground: https://play.golang.org/

Building

# build the image
docker build -t playground .

Running

docker run --name=play --rm -d -p 8080:8080 playground
# run some Go code
cat /path/to/code.go | go run client.go | curl -s --upload-file - localhost:8080/compile

Deployment

Deployment Triggers

Playground releases automatically triggered when new Go repository tags are pushed to GitHub, or when master is pushed on the playground repository.

For details, see deploy/go_trigger.json, deploy/playground_trigger.json, and deploy/deploy.json.

After making changes to trigger configuration, update configuration by running the following Make target:

make update-cloudbuild-trigger

Deploy via Cloud Build

The Cloud Build configuration will always build and deploy with the latest supported release of Go.

gcloud builds submit --config deploy/deploy.json .

Deploy via gcloud app deploy

Building the playground Docker container takes more than the default 10 minute time limit of cloud build, so increase its timeout first (note, app/cloud_build_timeout is a global configuration value):

gcloud config set app/cloud_build_timeout 1200  # 20 mins

Alternatively, to avoid Cloud Build and build locally:

make docker
docker tag playground:latest gcr.io/golang-org/playground:latest
docker push gcr.io/golang-org/playground:latest
gcloud --project=golang-org --account=you@google.com app deploy app.yaml --image-url=gcr.io/golang-org/playground:latest

Then:

gcloud --project=golang-org --account=you@google.com app deploy app.yaml

Contributing

To submit changes to this repository, see https://golang.org/doc/contribute.html.