]> Cypherpunks repositories - gostls13.git/commitdiff
dashboard: increase notification log to 200 lines
authorAndrew Gerrand <adg@golang.org>
Wed, 4 Jan 2012 00:22:58 +0000 (11:22 +1100)
committerAndrew Gerrand <adg@golang.org>
Wed, 4 Jan 2012 00:22:58 +0000 (11:22 +1100)
The go command lists all packages that were built.
A recent breakage notification included this text:

$ tail -100 < log
ok      errors
ok      exp/ebnf
?       exp/ebnflint [no test files]
ok      exp/gotype
ok      exp/norm
ok      exp/spdy

If the breakage occurred before this point it would
not be visible in the output.

R=golang-dev, gri, kevlar
CC=golang-dev
https://golang.org/cl/5504109

misc/dashboard/app/build/notify.txt

index 9b9fff49313e4717b6ad1d5ea492e95b1341410d..6c900670325ff2f0c7d4fcf9f17c8f0445405c95 100644 (file)
@@ -5,5 +5,5 @@ http://{{.Hostname}}/log/{{.Result.LogHash}}
 
 http://code.google.com/p/go/source/detail?r={{shortHash .Commit.Hash}}
 
-$ tail -100 < log
-{{printf "%s" .Log.Text | tail 100}}
+$ tail -200 < log
+{{printf "%s" .Log.Text | tail 200}}