Andrew Gerrand | 34bf450 | 2015-01-21 17:09:50 +1100 | [diff] [blame] | 1 | This subrepository holds the source for various packages and tools that support |
| 2 | development of the Go programming language. |
Chris Manghane | 7d85ae4 | 2013-08-01 13:23:51 +1000 | [diff] [blame] | 3 | |
Andrew Gerrand | 34bf450 | 2015-01-21 17:09:50 +1100 | [diff] [blame] | 4 | To submit changes to this repository, see http://golang.org/doc/contribute.html. |
Chris Manghane | 7d85ae4 | 2013-08-01 13:23:51 +1000 | [diff] [blame] | 5 | |
Andrew Gerrand | f7f4528 | 2016-04-22 12:33:11 +1000 | [diff] [blame] | 6 | app/: a.k.a the "dashboard"; the App Engine code that runs https://build.golang.org/ |
Brad Fitzpatrick | 4821e1d | 2015-01-14 17:24:45 -0800 | [diff] [blame] | 7 | |
| 8 | cmd/: |
| 9 | |
| 10 | buildlet/: HTTP server that runs on a VM and is told what to write to disk |
Brad Fitzpatrick | d5491eb | 2015-01-05 03:02:59 +0000 | [diff] [blame] | 11 | and what command to run. This is cross-compiled to different architectures |
Brad Fitzpatrick | 9571310 | 2014-12-29 12:29:13 -0800 | [diff] [blame] | 12 | and is the first program run when a builder VM comes up. It then |
Brad Fitzpatrick | d5491eb | 2015-01-05 03:02:59 +0000 | [diff] [blame] | 13 | is contacted by the coordinator to do a build. Not all builders use |
| 14 | the buildlet (at least not yet). |
Brad Fitzpatrick | 4821e1d | 2015-01-14 17:24:45 -0800 | [diff] [blame] | 15 | |
| 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 Fitzpatrick | d5491eb | 2015-01-05 03:02:59 +0000 | [diff] [blame] | 19 | builds using Docker containers and/or VMs as needed. |
Brad Fitzpatrick | 4821e1d | 2015-01-14 17:24:45 -0800 | [diff] [blame] | 20 | |
| 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 Fitzpatrick | d5491eb | 2015-01-05 03:02:59 +0000 | [diff] [blame] | 28 | env/: configuration files describing the environment of builders and related |
| 29 | binaries. Many builders are still configured ad-hoc, without a hermetic |
| 30 | environment. |
Brad Fitzpatrick | 4821e1d | 2015-01-14 17:24:45 -0800 | [diff] [blame] | 31 | |
Brad Fitzpatrick | d5491eb | 2015-01-05 03:02:59 +0000 | [diff] [blame] | 32 | types/: a Go package contain common types used by other pieces. |
Brad Fitzpatrick | 4821e1d | 2015-01-14 17:24:45 -0800 | [diff] [blame] | 33 | |
Chris Manghane | 7d85ae4 | 2013-08-01 13:23:51 +1000 | [diff] [blame] | 34 | |
Brad Fitzpatrick | d5491eb | 2015-01-05 03:02:59 +0000 | [diff] [blame] | 35 | If you wish to run a Go builder, please email golang-dev@googlegroups.com first. |
| 36 | There is documentation at https://golang.org/wiki/DashboardBuilders but |
| 37 | depending on the type of builder, we may want to run it ourselves, after you |
| 38 | prepare an environment description (resulting in a VM image) of it. See the env |
| 39 | directory. |