[mirror] Go's continuous build and release infrastructure (no stability promises)
Find a file
Dmitri Shuralyov d7ebcda8cd perf: move perf command to x/build/cmd/perf
Move the perf command source code along with its deployment files into
x/build/cmd, and the perf/app package into x/build/internal/perf.
The intent is to make this layout of this service more consistent with
other GKE services in x/build. An immediate benefit is this makes it
possible to delete the perf-specific copy of cloudbuild.yaml. Hopefully
this way other future maintenance will be slightly less expensive too.

Update the top-level README to reflect the fact that the perf/appengine
server that used to run on App Engine was merged into perf itself, which
runs on GKE. We'll also delete the old still-deployed App Engine app
since it's entirely obsolete and not reachable over internet other
than via version-specific URLs that App Engine provides.

For golang/go#70913.

Change-Id: I149a6bdd786e00a737382cf3b01ef93e022b2fb7
Reviewed-on: https://go-review.googlesource.com/c/build/+/752343
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2026-03-17 06:50:45 -07:00
app/appengine all: make copyright headers consistent 2023-03-01 01:31:01 +00:00
autocertcache all: clean up obsolete +build lines and io/ioutil uses [generated] 2023-09-08 21:45:36 +00:00
buildenv all: set correct IAP audience 2026-03-11 12:17:04 -07:00
buildlet all: use range over int 2026-02-09 15:10:19 -08:00
cmd perf: move perf command to x/build/cmd/perf 2026-03-17 06:50:45 -07:00
dashboard all: simplify after stringscut fix 2026-02-10 06:32:46 -08:00
deploy cmd, deploy: build Docker images via Cloud Build instead of local Docker 2025-10-02 12:28:36 -07:00
devapp/owners devapp/owners: add nsh as owner of various net packages and module proxy 2026-03-12 14:57:54 -07:00
doc doc/deployment.md: include auth step in deployment process 2026-02-26 18:24:11 -08:00
env all: migrate to 'gcloud storage' from gsutil 2026-03-11 16:28:36 -07:00
gerrit all: apply fmtappendf fix 2026-02-09 15:02:40 -08:00
internal perf: move perf command to x/build/cmd/perf 2026-03-17 06:50:45 -07:00
kubernetes all: apply omitzero fix 2026-02-09 14:58:02 -08:00
livelog all: upgrade go directive to at least 1.25.0 [generated] 2026-02-10 12:10:17 -08:00
maintner go.mod: update golang.org/x dependencies 2026-03-12 08:27:40 -07:00
pargzip all: use range over int 2026-02-09 15:10:19 -08:00
perfdata all: use range over int 2026-02-09 15:10:19 -08:00
relnote relnote: check error from io.ReadAll 2025-01-24 16:38:55 -08:00
repos repos: add AutoTagNextMinorVersion and AutoMaintainGoDirective 2025-02-21 10:51:48 -08:00
revdial/v2 all: use range over int 2026-02-09 15:10:19 -08:00
tarutil all: apply any fix 2026-02-09 13:52:22 -08:00
third_party/bandchart perf: display the geomean time series on the front page 2024-11-18 19:51:16 +00:00
types all: add or change GoDoc badge to pkg.go.dev with update-readmes.go 2020-12-15 04:52:31 +00:00
.dockerignore dashboard: add netbsd-8 builder 2017-07-14 17:12:24 +00:00
.gcloudignore cmd/xb, app/appengine: simplify build.golang.org deployment docs 2019-11-06 16:44:19 +00:00
.gitignore internal/relui: format javascript and css 2022-06-16 21:04:17 +00:00
build.go cmd/gomote: fix gomote dialing to the coordinator after recent cert changes 2017-04-06 17:23:32 +00:00
codereview.cfg build: add codereview.cfg 2015-03-18 17:04:30 +00:00
CONTRIBUTING.md CONTRIBUTING.md: remove note about not accepting Pull Requests 2018-03-14 18:02:21 +00:00
go.mod go.mod: update golang.org/x dependencies 2026-03-12 08:27:40 -07:00
go.sum go.mod: update golang.org/x dependencies 2026-03-12 08:27:40 -07:00
LICENSE LICENSE: update per Google Legal 2024-07-16 16:09:02 +00:00
PATENTS add top-level info files 2015-01-21 17:08:52 +11:00
README.md perf: move perf command to x/build/cmd/perf 2026-03-17 06:50:45 -07:00
update-protos.go all: regenerate .pb.go files, unify generation process 2024-10-02 16:11:41 +00:00
update-readmes.go all: clean up obsolete +build lines and io/ioutil uses [generated] 2023-09-08 21:45:36 +00:00

Go Build Tools

Go Reference

This repository holds the source for various packages and tools that support Go's build system and the development of the Go programming language.

Warning: Packages here are internal to Go's build system and its needs. Some may one day be promoted to another golang.org/x repository, or they may be modified arbitrarily or even disappear altogether. In short, code in this repository is not subject to the Go 1 compatibility promise nor the Release Policy.

Report Issues / Send Patches

This repository uses Gerrit for code changes. To contribute, see https://go.dev/doc/contribute.

The git repository is https://go.googlesource.com/build.

The main issue tracker for the build repository is located at https://go.dev/issues. Prefix your issue with "x/build/DIR: " in the subject line.

Overview

The main components of the Go build system are:

  • The coordinator, in cmd/coordinator/, serves https://farmer.golang.org/ and https://build.golang.org/. It runs on GKE and coordinates the whole build system. It finds work to do (both pre-submit "TryBot" work, and post-submit work) and executes builds, allocating machines to run the builds. It is the owner of all machines. It holds the state for which builds passed or failed, and the build logs.

  • The Go package in buildenv/ contains constants for where the dashboard and coordinator run, for prod, staging, and local development.

  • The buildlet, in cmd/buildlet/, is the HTTP server that runs on each worker machine to execute builds on the coordinator's behalf. This runs on every possible GOOS/GOARCH value. The buildlet binaries are stored on Google Cloud Storage and fetched per-build, so we can update the buildlet binary independently of the underlying machine images. The buildlet is the most insecure server possible: it has HTTP handlers to read & write arbitrary content to disk, and to execute any file on disk. It also has an SSH tunnel handler. The buildlet must never be exposed to the Internet. The coordinator provisions buildlets in one of three ways:

    1. by creating VMs on Google Compute Engine (GCE) with custom images configured to fetch & run the buildlet on boot, listening on port 80 in a private network.

    2. by running Linux containers (on either Google Kubernetes Engine or GCE with the Container-Optimized OS image), with the container images configured to fetch & run the buildlet on start, also listening on port 80 in a private network.

    3. by taking buildlets out of a pool of connected, dedicated machines. The buildlet can run in either listen mode (as on GCE and GKE) or in reverse mode. In reverse mode, the buildlet connects out to https://farmer.golang.org/ and registers itself with the coordinator. The TCP connection is then logically reversed (using revdial and when the coordinator needs to do a build, it makes HTTP requests to the coordinator over the already-open TCP connection.

    These three pools can be viewed at the coordinator's https://farmer.golang.org/#pools.

  • The env/ directory describes build environments. It contains scripts to create VM images, Dockerfiles to create Kubernetes containers, and instructions and tools for dedicated machines.

  • maintner in maintner/ is a library for slurping all of Go's GitHub and Gerrit state into memory. The daemon maintnerd in cmd/maintnerd/ runs on GKE and serves https://maintner.golang.org/. The daemon watches GitHub and Gerrit and appends to a mutation log whenever it sees new activity. The logs are stored on GCS and served to clients.

  • The godata package in maintner/godata/ provides a trivial API to let anybody write programs against Go's maintner corpus (all of our GitHub and Gerrit history), live up to the second. It takes a few seconds to load into memory and a few hundred MB of RAM after it downloads the mutation log from the network.

  • pubsubhelper in cmd/pubsubhelper/ is a dependency of maintnerd. It runs on GKE, is available at https://pubsubhelper.golang.org/, and runs an HTTP server to receive Webhook updates from GitHub on new activity and an SMTP server to receive new activity emails from Gerrit. It then is a pubsub system for maintnerd to subscribe to.

  • The gitmirror server in cmd/gitmirror/ mirrors Gerrit to GitHub, and also serves a mirror of the Gerrit code to the coordinator for builds, so we don't overwhelm Gerrit and blow our quota.

  • The Go gopherbot bot logic runs on GKE. The code is in cmd/gopherbot/. It depends on maintner via the godata package.

  • The developer dashboard at https://dev.golang.org/ runs on GKE. Its code is in cmd/devapp/. It also depends on maintner via the godata package.

  • cmd/retrybuilds: a Go client program to delete build results from the dashboard

  • The perfdata server, in perfdata/appengine serves https://perfdata.golang.org/. It runs on App Engine and serves the benchmark result storage system.

  • The perf server, in cmd/perf serves https://perf.golang.org/ and https://perf.golang.org/dashboard/. It runs on GKE and serves the benchmark result analysis system. See its README for how to start a local testing instance.

Adding a Go Builder

If you wish to run a Go builder, please email golang-dev@googlegroups.com first. There is documentation at https://golang.org/wiki/DashboardBuilders, but depending on the type of builder, we may want to run it ourselves, after you prepare an environment description (resulting in a VM image) of it. See the env directory.