blob: 350f4d301080949020c7cd28d9f7a11fba45309a [file] [log] [blame]
Andrew Gerrand34bf4502015-01-21 17:09:50 +11001This subrepository holds the source for various packages and tools that support
2development of the Go programming language.
Chris Manghane7d85ae42013-08-01 13:23:51 +10003
Andrew Gerrand34bf4502015-01-21 17:09:50 +11004To submit changes to this repository, see http://golang.org/doc/contribute.html.
Chris Manghane7d85ae42013-08-01 13:23:51 +10005
Andrew Gerrandf7f45282016-04-22 12:33:11 +10006app/: a.k.a the "dashboard"; the App Engine code that runs https://build.golang.org/
Brad Fitzpatrick4821e1d2015-01-14 17:24:45 -08007
8cmd/:
9
10 buildlet/: HTTP server that runs on a VM and is told what to write to disk
Brad Fitzpatrickd5491eb2015-01-05 03:02:59 +000011 and what command to run. This is cross-compiled to different architectures
Brad Fitzpatrick95713102014-12-29 12:29:13 -080012 and is the first program run when a builder VM comes up. It then
Brad Fitzpatrickd5491eb2015-01-05 03:02:59 +000013 is contacted by the coordinator to do a build. Not all builders use
14 the buildlet (at least not yet).
Brad Fitzpatrick4821e1d2015-01-14 17:24:45 -080015
16 builder/: gobuilder, a Go continuous build client. The original Go builder program.
17
18 coordinator/: daemon that runs on CoreOS on Google Compute Engine and manages
Brad Fitzpatrickd5491eb2015-01-05 03:02:59 +000019 builds using Docker containers and/or VMs as needed.
Brad Fitzpatrick4821e1d2015-01-14 17:24:45 -080020
21 retrybuilds/: a Go client program to delete build results from the dashboard (app)
22
23 upload/: a Go program to upload to Google Cloud Storage. used by Makefiles elsewhere.
24
25 watcher/: a daemon that watches for new commits to the Go repository and
26 its sub-repositories, and notifies the dashboard of those commits.
27
Brad Fitzpatrickd5491eb2015-01-05 03:02:59 +000028env/: configuration files describing the environment of builders and related
29 binaries. Many builders are still configured ad-hoc, without a hermetic
30 environment.
Brad Fitzpatrick4821e1d2015-01-14 17:24:45 -080031
Brad Fitzpatrickd5491eb2015-01-05 03:02:59 +000032types/: a Go package contain common types used by other pieces.
Brad Fitzpatrick4821e1d2015-01-14 17:24:45 -080033
Chris Manghane7d85ae42013-08-01 13:23:51 +100034
Brad Fitzpatrickd5491eb2015-01-05 03:02:59 +000035If you wish to run a Go builder, please email golang-dev@googlegroups.com first.
36There is documentation at https://golang.org/wiki/DashboardBuilders but
37depending on the type of builder, we may want to run it ourselves, after you
38prepare an environment description (resulting in a VM image) of it. See the env
39directory.