2014-09-03 11:26:52 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// The coordinator runs on GCE and coordinates builds in Docker containers.
|
2014-12-08 21:00:58 -07:00
|
|
|
package main // import "golang.org/x/tools/dashboard/coordinator"
|
2014-09-03 11:26:52 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/hmac"
|
|
|
|
"crypto/md5"
|
|
|
|
"encoding/json"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2014-12-14 17:51:42 -07:00
|
|
|
"html"
|
2014-09-03 11:26:52 -06:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
masterKeyFile = flag.String("masterkey", "", "Path to builder master key. Else fetched using GCE project attribute 'builder-master-key'.")
|
|
|
|
maxBuilds = flag.Int("maxbuilds", 6, "Max concurrent builds")
|
|
|
|
|
|
|
|
// Debug flags:
|
|
|
|
addTemp = flag.Bool("temp", false, "Append -temp to all builders.")
|
|
|
|
just = flag.String("just", "", "If non-empty, run single build in the foreground. Requires rev.")
|
|
|
|
rev = flag.String("rev", "", "Revision to build.")
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
startTime = time.Now()
|
|
|
|
builders = map[string]buildConfig{} // populated once at startup
|
2014-12-01 10:59:02 -07:00
|
|
|
watchers = map[string]watchConfig{} // populated once at startup
|
2014-09-03 11:26:52 -06:00
|
|
|
donec = make(chan builderRev) // reports of finished builders
|
|
|
|
|
|
|
|
statusMu sync.Mutex
|
|
|
|
status = map[builderRev]*buildStatus{}
|
|
|
|
)
|
|
|
|
|
|
|
|
type imageInfo struct {
|
|
|
|
url string // of tar file
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
lastMod string
|
|
|
|
}
|
|
|
|
|
|
|
|
var images = map[string]*imageInfo{
|
2014-12-01 10:59:02 -07:00
|
|
|
"go-commit-watcher": {url: "https://storage.googleapis.com/go-builder-data/docker-commit-watcher.tar.gz"},
|
2014-09-09 11:54:11 -06:00
|
|
|
"gobuilders/linux-x86-base": {url: "https://storage.googleapis.com/go-builder-data/docker-linux.base.tar.gz"},
|
2014-10-21 16:33:04 -06:00
|
|
|
"gobuilders/linux-x86-clang": {url: "https://storage.googleapis.com/go-builder-data/docker-linux.clang.tar.gz"},
|
2014-09-09 11:54:11 -06:00
|
|
|
"gobuilders/linux-x86-gccgo": {url: "https://storage.googleapis.com/go-builder-data/docker-linux.gccgo.tar.gz"},
|
|
|
|
"gobuilders/linux-x86-nacl": {url: "https://storage.googleapis.com/go-builder-data/docker-linux.nacl.tar.gz"},
|
2014-09-26 16:02:51 -06:00
|
|
|
"gobuilders/linux-x86-sid": {url: "https://storage.googleapis.com/go-builder-data/docker-linux.sid.tar.gz"},
|
2014-09-03 11:26:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
type buildConfig struct {
|
2014-10-09 15:04:49 -06:00
|
|
|
name string // "linux-amd64-race"
|
|
|
|
image string // Docker image to use to build
|
|
|
|
cmd string // optional -cmd flag (relative to go/src/)
|
|
|
|
env []string // extra environment ("key=value") pairs
|
|
|
|
dashURL string // url of the build dashboard
|
|
|
|
tool string // the tool this configuration is for
|
2014-09-03 11:26:52 -06:00
|
|
|
}
|
|
|
|
|
2014-12-01 10:59:02 -07:00
|
|
|
type watchConfig struct {
|
2014-12-11 19:19:15 -07:00
|
|
|
repo string // "https://go.googlesource.com/go"
|
2014-12-01 10:59:02 -07:00
|
|
|
dash string // "https://build.golang.org/" (must end in /)
|
|
|
|
interval time.Duration // Polling interval
|
|
|
|
}
|
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
addBuilder(buildConfig{name: "linux-386"})
|
|
|
|
addBuilder(buildConfig{name: "linux-386-387", env: []string{"GO386=387"}})
|
|
|
|
addBuilder(buildConfig{name: "linux-amd64"})
|
2014-09-04 18:48:56 -06:00
|
|
|
addBuilder(buildConfig{name: "linux-amd64-nocgo", env: []string{"CGO_ENABLED=0", "USER=root"}})
|
2014-09-24 13:54:59 -06:00
|
|
|
addBuilder(buildConfig{name: "linux-amd64-noopt", env: []string{"GO_GCFLAGS=-N -l"}})
|
2014-09-03 11:26:52 -06:00
|
|
|
addBuilder(buildConfig{name: "linux-amd64-race"})
|
|
|
|
addBuilder(buildConfig{name: "nacl-386"})
|
|
|
|
addBuilder(buildConfig{name: "nacl-amd64p32"})
|
2014-09-09 11:54:11 -06:00
|
|
|
addBuilder(buildConfig{
|
2014-10-09 15:04:49 -06:00
|
|
|
name: "linux-amd64-gccgo",
|
|
|
|
image: "gobuilders/linux-x86-gccgo",
|
|
|
|
cmd: "make RUNTESTFLAGS=\"--target_board=unix/-m64\" check-go -j16",
|
|
|
|
dashURL: "https://build.golang.org/gccgo",
|
|
|
|
tool: "gccgo",
|
|
|
|
})
|
|
|
|
addBuilder(buildConfig{
|
|
|
|
name: "linux-386-gccgo",
|
|
|
|
image: "gobuilders/linux-x86-gccgo",
|
|
|
|
cmd: "make RUNTESTFLAGS=\"--target_board=unix/-m32\" check-go -j16",
|
|
|
|
dashURL: "https://build.golang.org/gccgo",
|
|
|
|
tool: "gccgo",
|
2014-09-09 11:54:11 -06:00
|
|
|
})
|
2014-09-26 16:02:51 -06:00
|
|
|
addBuilder(buildConfig{name: "linux-386-sid", image: "gobuilders/linux-x86-sid"})
|
|
|
|
addBuilder(buildConfig{name: "linux-amd64-sid", image: "gobuilders/linux-x86-sid"})
|
2014-10-01 12:57:02 -06:00
|
|
|
addBuilder(buildConfig{name: "linux-386-clang", image: "gobuilders/linux-x86-clang"})
|
|
|
|
addBuilder(buildConfig{name: "linux-amd64-clang", image: "gobuilders/linux-x86-clang"})
|
2014-09-03 11:26:52 -06:00
|
|
|
|
2014-12-11 19:19:15 -07:00
|
|
|
addWatcher(watchConfig{repo: "https://go.googlesource.com/go", dash: "https://build.golang.org/"})
|
|
|
|
// TODO(adg,cmang): fix gccgo watcher
|
|
|
|
// addWatcher(watchConfig{repo: "https://code.google.com/p/gofrontend", dash: "https://build.golang.org/gccgo/"})
|
2014-12-01 10:59:02 -07:00
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
if (*just != "") != (*rev != "") {
|
|
|
|
log.Fatalf("--just and --rev must be used together")
|
|
|
|
}
|
|
|
|
if *just != "" {
|
|
|
|
conf, ok := builders[*just]
|
|
|
|
if !ok {
|
|
|
|
log.Fatalf("unknown builder %q", *just)
|
|
|
|
}
|
|
|
|
cmd := exec.Command("docker", append([]string{"run"}, conf.dockerRunArgs(*rev)...)...)
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
log.Fatalf("Build failed: %v", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
http.HandleFunc("/", handleStatus)
|
|
|
|
http.HandleFunc("/logs", handleLogs)
|
|
|
|
go http.ListenAndServe(":80", nil)
|
|
|
|
|
2014-12-14 17:51:42 -07:00
|
|
|
go cleanUpOldContainers()
|
|
|
|
|
2014-12-01 10:59:02 -07:00
|
|
|
for _, watcher := range watchers {
|
|
|
|
if err := startWatching(watchers[watcher.repo]); err != nil {
|
|
|
|
log.Printf("Error starting watcher for %s: %v", watcher.repo, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
workc := make(chan builderRev)
|
2014-09-09 11:54:11 -06:00
|
|
|
for name, builder := range builders {
|
|
|
|
go findWorkLoop(name, builder.dashURL, workc)
|
2014-09-03 11:26:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ticker := time.NewTicker(1 * time.Minute)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case work := <-workc:
|
|
|
|
log.Printf("workc received %+v; len(status) = %v, maxBuilds = %v; cur = %p", work, len(status), *maxBuilds, status[work])
|
|
|
|
mayBuild := mayBuildRev(work)
|
|
|
|
if mayBuild {
|
2014-12-01 10:59:02 -07:00
|
|
|
if numBuilds() > *maxBuilds {
|
2014-09-03 11:26:52 -06:00
|
|
|
mayBuild = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if mayBuild {
|
|
|
|
if st, err := startBuilding(builders[work.name], work.rev); err == nil {
|
|
|
|
setStatus(work, st)
|
|
|
|
log.Printf("%v now building in %v", work, st.container)
|
|
|
|
} else {
|
|
|
|
log.Printf("Error starting to build %v: %v", work, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case done := <-donec:
|
|
|
|
log.Printf("%v done", done)
|
|
|
|
setStatus(done, nil)
|
|
|
|
case <-ticker.C:
|
|
|
|
if numCurrentBuilds() == 0 && time.Now().After(startTime.Add(10*time.Minute)) {
|
|
|
|
// TODO: halt the whole machine to kill the VM or something
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func numCurrentBuilds() int {
|
|
|
|
statusMu.Lock()
|
|
|
|
defer statusMu.Unlock()
|
|
|
|
return len(status)
|
|
|
|
}
|
|
|
|
|
|
|
|
func mayBuildRev(work builderRev) bool {
|
|
|
|
statusMu.Lock()
|
|
|
|
defer statusMu.Unlock()
|
|
|
|
return len(status) < *maxBuilds && status[work] == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func setStatus(work builderRev, st *buildStatus) {
|
|
|
|
statusMu.Lock()
|
|
|
|
defer statusMu.Unlock()
|
|
|
|
if st == nil {
|
|
|
|
delete(status, work)
|
|
|
|
} else {
|
|
|
|
status[work] = st
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getStatus(work builderRev) *buildStatus {
|
|
|
|
statusMu.Lock()
|
|
|
|
defer statusMu.Unlock()
|
|
|
|
return status[work]
|
|
|
|
}
|
|
|
|
|
|
|
|
type byAge []*buildStatus
|
|
|
|
|
|
|
|
func (s byAge) Len() int { return len(s) }
|
|
|
|
func (s byAge) Less(i, j int) bool { return s[i].start.Before(s[j].start) }
|
|
|
|
func (s byAge) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
|
|
|
|
|
|
func handleStatus(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var active []*buildStatus
|
|
|
|
statusMu.Lock()
|
|
|
|
for _, st := range status {
|
|
|
|
active = append(active, st)
|
|
|
|
}
|
|
|
|
statusMu.Unlock()
|
|
|
|
|
|
|
|
fmt.Fprintf(w, "<html><body><h1>Go build coordinator</h1>%d of max %d builds running:<p><pre>", len(status), *maxBuilds)
|
|
|
|
sort.Sort(byAge(active))
|
|
|
|
for _, st := range active {
|
|
|
|
fmt.Fprintf(w, "%-22s hg %s in container <a href='/logs?name=%s&rev=%s'>%s</a>, %v ago\n", st.name, st.rev, st.name, st.rev,
|
|
|
|
st.container, time.Now().Sub(st.start))
|
|
|
|
}
|
2014-12-14 17:51:42 -07:00
|
|
|
fmt.Fprintf(w, "</pre><h2>disk space</h2><pre>%s</pre></body></html>", html.EscapeString(diskFree()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func diskFree() string {
|
|
|
|
out, _ := exec.Command("df", "-h").Output()
|
|
|
|
return string(out)
|
2014-09-03 11:26:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleLogs(w http.ResponseWriter, r *http.Request) {
|
|
|
|
st := getStatus(builderRev{r.FormValue("name"), r.FormValue("rev")})
|
|
|
|
if st == nil {
|
|
|
|
fmt.Fprintf(w, "<html><body><h1>not building</h1>")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
out, err := exec.Command("docker", "logs", st.container).CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
http.Error(w, "Error fetching logs. Already finished?", 500)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
key := builderKey(st.name)
|
|
|
|
logs := strings.Replace(string(out), key, "BUILDERKEY", -1)
|
|
|
|
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
|
|
|
io.WriteString(w, logs)
|
|
|
|
}
|
|
|
|
|
2014-09-09 11:54:11 -06:00
|
|
|
func findWorkLoop(builderName, dashURL string, work chan<- builderRev) {
|
2014-09-03 11:26:52 -06:00
|
|
|
// TODO: make this better
|
|
|
|
for {
|
2014-09-09 11:54:11 -06:00
|
|
|
rev, err := findWork(builderName, dashURL)
|
2014-09-03 11:26:52 -06:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Finding work for %s: %v", builderName, err)
|
|
|
|
} else if rev != "" {
|
|
|
|
work <- builderRev{builderName, rev}
|
|
|
|
}
|
|
|
|
time.Sleep(60 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-09 11:54:11 -06:00
|
|
|
func findWork(builderName, dashURL string) (rev string, err error) {
|
2014-09-03 11:26:52 -06:00
|
|
|
var jres struct {
|
|
|
|
Response struct {
|
|
|
|
Kind string
|
|
|
|
Data struct {
|
|
|
|
Hash string
|
|
|
|
PerfResults []string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-09 11:54:11 -06:00
|
|
|
res, err := http.Get(dashURL + "/todo?builder=" + builderName + "&kind=build-go-commit")
|
2014-09-03 11:26:52 -06:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
if res.StatusCode != 200 {
|
|
|
|
return "", fmt.Errorf("unexpected http status %d", res.StatusCode)
|
|
|
|
}
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&jres)
|
|
|
|
if jres.Response.Kind == "build-go-commit" {
|
|
|
|
rev = jres.Response.Data.Hash
|
|
|
|
}
|
|
|
|
return rev, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type builderRev struct {
|
|
|
|
name, rev string
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns the part after "docker run"
|
|
|
|
func (conf buildConfig) dockerRunArgs(rev string) (args []string) {
|
|
|
|
if key := builderKey(conf.name); key != "" {
|
|
|
|
tmpKey := "/tmp/" + conf.name + ".buildkey"
|
|
|
|
if _, err := os.Stat(tmpKey); err != nil {
|
|
|
|
if err := ioutil.WriteFile(tmpKey, []byte(key), 0600); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2014-11-09 19:22:35 -07:00
|
|
|
// Images may look for .gobuildkey in / or /root, so provide both.
|
|
|
|
// TODO(adg): fix images that look in the wrong place.
|
2014-09-03 11:26:52 -06:00
|
|
|
args = append(args, "-v", tmpKey+":/.gobuildkey")
|
2014-11-09 19:22:35 -07:00
|
|
|
args = append(args, "-v", tmpKey+":/root/.gobuildkey")
|
2014-09-03 11:26:52 -06:00
|
|
|
}
|
|
|
|
for _, pair := range conf.env {
|
|
|
|
args = append(args, "-e", pair)
|
|
|
|
}
|
|
|
|
args = append(args,
|
|
|
|
conf.image,
|
|
|
|
"/usr/local/bin/builder",
|
|
|
|
"-rev="+rev,
|
2014-09-09 11:54:11 -06:00
|
|
|
"-dashboard="+conf.dashURL,
|
|
|
|
"-tool="+conf.tool,
|
2014-09-26 13:21:08 -06:00
|
|
|
"-buildroot=/",
|
2014-09-03 11:26:52 -06:00
|
|
|
"-v",
|
|
|
|
)
|
|
|
|
if conf.cmd != "" {
|
|
|
|
args = append(args, "-cmd", conf.cmd)
|
|
|
|
}
|
|
|
|
args = append(args, conf.name)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func addBuilder(c buildConfig) {
|
|
|
|
if c.name == "" {
|
|
|
|
panic("empty name")
|
|
|
|
}
|
|
|
|
if *addTemp {
|
|
|
|
c.name += "-temp"
|
|
|
|
}
|
|
|
|
if _, dup := builders[c.name]; dup {
|
|
|
|
panic("dup name")
|
|
|
|
}
|
2014-09-09 11:54:11 -06:00
|
|
|
if c.dashURL == "" {
|
|
|
|
c.dashURL = "https://build.golang.org"
|
|
|
|
}
|
|
|
|
if c.tool == "" {
|
|
|
|
c.tool = "go"
|
|
|
|
}
|
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
if strings.HasPrefix(c.name, "nacl-") {
|
|
|
|
if c.image == "" {
|
|
|
|
c.image = "gobuilders/linux-x86-nacl"
|
|
|
|
}
|
|
|
|
if c.cmd == "" {
|
|
|
|
c.cmd = "/usr/local/bin/build-command.pl"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(c.name, "linux-") && c.image == "" {
|
|
|
|
c.image = "gobuilders/linux-x86-base"
|
|
|
|
}
|
|
|
|
if c.image == "" {
|
|
|
|
panic("empty image")
|
|
|
|
}
|
|
|
|
builders[c.name] = c
|
|
|
|
}
|
|
|
|
|
2014-12-01 10:59:02 -07:00
|
|
|
// returns the part after "docker run"
|
|
|
|
func (conf watchConfig) dockerRunArgs() (args []string) {
|
2014-12-11 19:19:15 -07:00
|
|
|
log.Printf("Running watcher with master key %q", masterKey())
|
|
|
|
if key := masterKey(); len(key) > 0 {
|
2014-12-01 10:59:02 -07:00
|
|
|
tmpKey := "/tmp/watcher.buildkey"
|
|
|
|
if _, err := os.Stat(tmpKey); err != nil {
|
2014-12-11 19:19:15 -07:00
|
|
|
if err := ioutil.WriteFile(tmpKey, key, 0600); err != nil {
|
2014-12-01 10:59:02 -07:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2014-12-11 19:19:15 -07:00
|
|
|
// Images may look for .gobuildkey in / or /root, so provide both.
|
|
|
|
// TODO(adg): fix images that look in the wrong place.
|
2014-12-01 10:59:02 -07:00
|
|
|
args = append(args, "-v", tmpKey+":/.gobuildkey")
|
2014-12-11 19:19:15 -07:00
|
|
|
args = append(args, "-v", tmpKey+":/root/.gobuildkey")
|
2014-12-01 10:59:02 -07:00
|
|
|
}
|
|
|
|
args = append(args,
|
|
|
|
"go-commit-watcher",
|
|
|
|
"/usr/local/bin/watcher",
|
|
|
|
"-repo="+conf.repo,
|
|
|
|
"-dash="+conf.dash,
|
|
|
|
"-poll="+conf.interval.String(),
|
|
|
|
)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func addWatcher(c watchConfig) {
|
|
|
|
if c.repo == "" {
|
2014-12-11 19:19:15 -07:00
|
|
|
c.repo = "https://go.googlesource.com/go"
|
2014-12-01 10:59:02 -07:00
|
|
|
}
|
|
|
|
if c.dash == "" {
|
|
|
|
c.dash = "https://build.golang.org/"
|
|
|
|
}
|
|
|
|
if c.interval == 0 {
|
|
|
|
c.interval = 10 * time.Second
|
|
|
|
}
|
|
|
|
watchers[c.repo] = c
|
|
|
|
}
|
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
func condUpdateImage(img string) error {
|
|
|
|
ii := images[img]
|
|
|
|
if ii == nil {
|
|
|
|
log.Fatalf("Image %q not described.", img)
|
|
|
|
}
|
|
|
|
ii.mu.Lock()
|
|
|
|
defer ii.mu.Unlock()
|
|
|
|
res, err := http.Head(ii.url)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error checking %s: %v", ii.url, err)
|
|
|
|
}
|
|
|
|
if res.StatusCode != 200 {
|
|
|
|
return fmt.Errorf("Error checking %s: %v", ii.url, res.Status)
|
|
|
|
}
|
|
|
|
if res.Header.Get("Last-Modified") == ii.lastMod {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err = http.Get(ii.url)
|
|
|
|
if err != nil || res.StatusCode != 200 {
|
|
|
|
return fmt.Errorf("Get after Head failed for %s: %v, %v", ii.url, err, res)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
log.Printf("Running: docker load of %s\n", ii.url)
|
|
|
|
cmd := exec.Command("docker", "load")
|
|
|
|
cmd.Stdin = res.Body
|
|
|
|
|
|
|
|
var out bytes.Buffer
|
|
|
|
cmd.Stdout = &out
|
|
|
|
cmd.Stderr = &out
|
|
|
|
|
|
|
|
if cmd.Run(); err != nil {
|
|
|
|
log.Printf("Failed to pull latest %s from %s and pipe into docker load: %v, %s", img, ii.url, err, out.Bytes())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ii.lastMod = res.Header.Get("Last-Modified")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-12-01 10:59:02 -07:00
|
|
|
// numBuilds finds the number of go builder instances currently running.
|
|
|
|
func numBuilds() int {
|
|
|
|
out, _ := exec.Command("docker", "ps").Output()
|
|
|
|
numBuilds := 0
|
|
|
|
ps := bytes.Split(out, []byte("\n"))
|
|
|
|
for _, p := range ps {
|
|
|
|
if bytes.HasPrefix(p, []byte("gobuilders/")) {
|
|
|
|
numBuilds++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Printf("num current docker builds: %d", numBuilds)
|
|
|
|
return numBuilds
|
|
|
|
}
|
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
func startBuilding(conf buildConfig, rev string) (*buildStatus, error) {
|
|
|
|
if err := condUpdateImage(conf.image); err != nil {
|
|
|
|
log.Printf("Failed to setup container for %v %v: %v", conf.name, rev, err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command("docker", append([]string{"run", "-d"}, conf.dockerRunArgs(rev)...)...)
|
|
|
|
all, err := cmd.CombinedOutput()
|
|
|
|
log.Printf("Docker run for %v %v = err:%v, output:%s", conf.name, rev, err, all)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
container := strings.TrimSpace(string(all))
|
|
|
|
go func() {
|
|
|
|
all, err := exec.Command("docker", "wait", container).CombinedOutput()
|
2014-09-26 16:02:51 -06:00
|
|
|
log.Printf("docker wait %s/%s: %v, %s", container, rev, err, strings.TrimSpace(string(all)))
|
2014-09-03 11:26:52 -06:00
|
|
|
donec <- builderRev{conf.name, rev}
|
|
|
|
exec.Command("docker", "rm", container).Run()
|
|
|
|
}()
|
|
|
|
return &buildStatus{
|
|
|
|
builderRev: builderRev{
|
|
|
|
name: conf.name,
|
|
|
|
rev: rev,
|
|
|
|
},
|
|
|
|
container: container,
|
|
|
|
start: time.Now(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type buildStatus struct {
|
|
|
|
builderRev
|
|
|
|
container string
|
|
|
|
start time.Time
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
|
2014-12-11 19:19:15 -07:00
|
|
|
func startWatching(conf watchConfig) (err error) {
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
restartWatcherSoon(conf)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
log.Printf("Starting watcher for %v", conf.repo)
|
2014-12-01 10:59:02 -07:00
|
|
|
if err := condUpdateImage("go-commit-watcher"); err != nil {
|
|
|
|
log.Printf("Failed to setup container for commit watcher: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command("docker", append([]string{"run", "-d"}, conf.dockerRunArgs()...)...)
|
|
|
|
all, err := cmd.CombinedOutput()
|
2014-12-11 19:19:15 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Docker run for commit watcher = err:%v, output: %s", err, all)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
container := strings.TrimSpace(string(all))
|
|
|
|
// Start a goroutine to wait for the watcher to die.
|
|
|
|
go func() {
|
|
|
|
exec.Command("docker", "wait", container).Run()
|
|
|
|
exec.Command("docker", "rm", "-v", container).Run()
|
|
|
|
log.Printf("Watcher crashed. Restarting soon.")
|
|
|
|
restartWatcherSoon(conf)
|
|
|
|
}()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func restartWatcherSoon(conf watchConfig) {
|
|
|
|
time.AfterFunc(30*time.Second, func() {
|
|
|
|
startWatching(conf)
|
|
|
|
})
|
2014-12-01 10:59:02 -07:00
|
|
|
}
|
|
|
|
|
2014-09-03 11:26:52 -06:00
|
|
|
func builderKey(builder string) string {
|
|
|
|
master := masterKey()
|
|
|
|
if len(master) == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
h := hmac.New(md5.New, master)
|
|
|
|
io.WriteString(h, builder)
|
|
|
|
return fmt.Sprintf("%x", h.Sum(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
func masterKey() []byte {
|
|
|
|
keyOnce.Do(loadKey)
|
|
|
|
return masterKeyCache
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
keyOnce sync.Once
|
|
|
|
masterKeyCache []byte
|
|
|
|
)
|
|
|
|
|
|
|
|
func loadKey() {
|
|
|
|
if *masterKeyFile != "" {
|
|
|
|
b, err := ioutil.ReadFile(*masterKeyFile)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
masterKeyCache = bytes.TrimSpace(b)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req, _ := http.NewRequest("GET", "http://metadata.google.internal/computeMetadata/v1/project/attributes/builder-master-key", nil)
|
|
|
|
req.Header.Set("Metadata-Flavor", "Google")
|
|
|
|
res, err := http.DefaultClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("No builder master key available")
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
if res.StatusCode != 200 {
|
|
|
|
log.Fatalf("No builder-master-key project attribute available.")
|
|
|
|
}
|
|
|
|
slurp, err := ioutil.ReadAll(res.Body)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
masterKeyCache = bytes.TrimSpace(slurp)
|
|
|
|
}
|
2014-12-14 17:51:42 -07:00
|
|
|
|
|
|
|
func cleanUpOldContainers() {
|
|
|
|
for {
|
|
|
|
for _, cid := range oldContainers() {
|
|
|
|
log.Printf("Cleaning old container %v", cid)
|
|
|
|
exec.Command("docker", "rm", "-v", cid).Run()
|
|
|
|
}
|
|
|
|
time.Sleep(30 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func oldContainers() []string {
|
|
|
|
out, _ := exec.Command("docker", "ps", "-a", "--filter=status=exited", "--no-trunc", "-q").Output()
|
|
|
|
return strings.Fields(string(out))
|
|
|
|
}
|