[mirror] Go's continuous build and release infrastructure (no stability promises)
Перейти к файлу
Dmitri Shuralyov fc1f3f8707 dashboard: update OpenBSD 6.8 images with 009_exit syspatch
For golang/go#35712.
Updates golang/go#42542.
Updates golang/go#42426.

Change-Id: Ifbdd025b8d1708e715ba312c438f391e1aeaeff8
Reviewed-on: https://go-review.googlesource.com/c/build/+/277115
Trust: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Joel Sing <joel@sing.id.au>
2020-12-11 05:44:30 +00:00
app app/appengine: stop hiding some tested configurations for x repos 2020-07-22 20:00:05 +00:00
autocertcache all: add README.md files where missing, and tool to keep them updated 2017-08-02 22:17:52 +00:00
buildenv buildenv: remove EC2 zone configuration options 2020-09-16 19:06:48 +00:00
buildlet buildlet: use TLS certificates for SSH connections 2020-10-07 16:07:34 +00:00
cloudfns cloudfns: update to go1.13 runtime 2020-04-28 20:27:02 +00:00
cmd cmd/release, dashboard: implement builder plan for Go 1.16 2020-12-09 04:57:37 +00:00
crfs crfs: delete 2019-09-17 19:57:51 +00:00
dashboard dashboard: update OpenBSD 6.8 images with 009_exit syspatch 2020-12-11 05:44:30 +00:00
devapp devapp/owners: remove mikioh entries 2020-10-24 00:11:51 +00:00
doc all: upgrade farmer.golang.org links to https 2017-04-03 15:15:01 +00:00
env env/linux-x86-buster, dashboard: add netbase package to the host 2020-11-23 20:09:03 +00:00
envutil all: add README.md files where missing, and tool to keep them updated 2017-08-02 22:17:52 +00:00
gerrit maintner/maintnerd/maintapi: look for TRY= in inline comments 2020-07-08 03:33:58 +00:00
internal internal/cloud: do not use canceled context in rate limiter 2020-11-10 19:07:52 +00:00
kubernetes kubernetes/gke: skip 4 tests on builders 2020-01-17 21:25:17 +00:00
livelog all: add README.md files where missing, and tool to keep them updated 2017-08-02 22:17:52 +00:00
maintner maintner/maintnerd/maintapi: adjust heuristic for tip version 2020-11-06 19:08:00 +00:00
pargzip all: add README.md files where missing, and tool to keep them updated 2017-08-02 22:17:52 +00:00
repos repos: add API for opting-in to use pkg.go.dev for documentation 2020-05-20 14:10:49 +00:00
revdial cmd/coordinator, revdial: delete the old v1 revdial code 2019-11-25 14:51:51 +00:00
tarutil all: add README.md files where missing, and tool to keep them updated 2017-08-02 22:17:52 +00:00
types cmd/coordinator: consider explicitly requested builders as SlowBots 2020-04-09 23:01:01 +00:00
vcs-test vcs-test/vcweb: fix various extraction issues for serving modules with authentication 2019-04-05 20:08:37 +00:00
version version: convert to generated copy of golang.org/dl/internal/version 2018-12-11 00:39:38 +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
AUTHORS add top-level info files 2015-01-21 17:08:52 +11:00
CONTRIBUTING.md CONTRIBUTING.md: remove note about not accepting Pull Requests 2018-03-14 18:02:21 +00:00
CONTRIBUTORS add top-level info files 2015-01-21 17:08:52 +11:00
LICENSE add top-level info files 2015-01-21 17:08:52 +11:00
PATENTS add top-level info files 2015-01-21 17:08:52 +11:00
README.md README.md: add badge to pkg.go.dev 2020-12-07 21:45: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
go.mod cmd/relui: generate uuid for workflow and task instances 2020-09-25 20:12:48 +00:00
go.sum cmd/relui: generate uuid for workflow and task instances 2020-09-25 20:12:48 +00:00
update-readmes.go all: add README.md files where missing, and tool to keep them updated 2017-08-02 22:17:52 +00:00

README.md

Go Build Tools

Go Reference

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

Report Issues / Send Patches

This repository uses Gerrit for code changes. To contribute, see https://golang.org/doc/contribute.html.

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

Overview

The main components of the Go build system are:

  • The dashboard, in app/, serves https://build.golang.org/. It runs on App Engine and holds the state for which builds passed or failed, and stores the build failure logs for post-submit failures. (Trybot build failure logs are stored elsewhere). The dashboard does not execute any builds on its own.

  • The coordinator, in cmd/coordinator/, serves https://farmer.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.

  • 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 http://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 maintner/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 devapp/. It also depends on maintner via the godata package.

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

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.