2015-01-21 09:09:50 +03:00
|
|
|
This subrepository holds the source for various packages and tools that support
|
|
|
|
development of the Go programming language.
|
2013-08-01 07:23:51 +04:00
|
|
|
|
2015-01-21 09:09:50 +03:00
|
|
|
To submit changes to this repository, see http://golang.org/doc/contribute.html.
|
2013-08-01 07:23:51 +04:00
|
|
|
|
2015-01-15 04:24:45 +03:00
|
|
|
app/: a.k.a the "dashboard"; the App Engine code that runs http://build.golang.org/
|
|
|
|
|
|
|
|
cmd/:
|
|
|
|
|
|
|
|
buildlet/: HTTP server that runs on a VM and is told what to write to disk
|
2015-01-05 06:02:59 +03:00
|
|
|
and what command to run. This is cross-compiled to different architectures
|
2014-12-29 23:29:13 +03:00
|
|
|
and is the first program run when a builder VM comes up. It then
|
2015-01-05 06:02:59 +03:00
|
|
|
is contacted by the coordinator to do a build. Not all builders use
|
|
|
|
the buildlet (at least not yet).
|
2015-01-15 04:24:45 +03:00
|
|
|
|
|
|
|
builder/: gobuilder, a Go continuous build client. The original Go builder program.
|
|
|
|
|
|
|
|
coordinator/: daemon that runs on CoreOS on Google Compute Engine and manages
|
2015-01-05 06:02:59 +03:00
|
|
|
builds using Docker containers and/or VMs as needed.
|
2015-01-15 04:24:45 +03:00
|
|
|
|
|
|
|
retrybuilds/: a Go client program to delete build results from the dashboard (app)
|
|
|
|
|
|
|
|
upload/: a Go program to upload to Google Cloud Storage. used by Makefiles elsewhere.
|
|
|
|
|
|
|
|
watcher/: a daemon that watches for new commits to the Go repository and
|
|
|
|
its sub-repositories, and notifies the dashboard of those commits.
|
|
|
|
|
2015-01-05 06:02:59 +03:00
|
|
|
env/: configuration files describing the environment of builders and related
|
|
|
|
binaries. Many builders are still configured ad-hoc, without a hermetic
|
|
|
|
environment.
|
2015-01-15 04:24:45 +03:00
|
|
|
|
2015-01-05 06:02:59 +03:00
|
|
|
types/: a Go package contain common types used by other pieces.
|
2015-01-15 04:24:45 +03:00
|
|
|
|
2013-08-01 07:23:51 +04:00
|
|
|
|
2015-01-05 06:02:59 +03:00
|
|
|
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.
|