mirror of https://github.com/perkeep/perkeep.git
buildbot: switch to Go 1.5
Change-Id: I1b97aa44157064a64baec8f2d3f22376c9438d21
This commit is contained in:
parent
8ea07d33d2
commit
b49c8b94de
|
@ -1,3 +1,7 @@
|
|||
# before doing anything:
|
||||
|
||||
export GO15VENDOREXPERIMENT=1
|
||||
|
||||
Running:
|
||||
|
||||
mkdir ~/buildbot
|
||||
|
|
|
@ -54,7 +54,7 @@ const (
|
|||
warmup = 30 * time.Second // duration before we test if devcam server has started properly
|
||||
camlistoredTimeOut = time.Minute // how long we try to dial camlistored after warmup
|
||||
go1BaseURL = "https://storage.googleapis.com/golang/"
|
||||
go1Tarball = "go1.4.1.linux-amd64.tar.gz"
|
||||
go1Tarball = "go1.5.linux-amd64.tar.gz"
|
||||
go1URL = go1BaseURL + go1Tarball
|
||||
)
|
||||
|
||||
|
|
|
@ -1182,7 +1182,7 @@ var statusHTML = `
|
|||
<th>{{$report.OSArch}}</th>
|
||||
<th colspan="1">Go tip hash</th>
|
||||
<th colspan="1">Camli HEAD hash</th>
|
||||
<th colspan="1">Go1.4.1</th>
|
||||
<th colspan="1">Go1.5</th>
|
||||
<th colspan="1">Gotip</th>
|
||||
</tr>
|
||||
{{if $report.Progress}}
|
||||
|
@ -1246,7 +1246,7 @@ var testSuiteHTML = `
|
|||
<body>
|
||||
{{range $ts := .BiTs}}
|
||||
{{if $ts}}
|
||||
<h2> Testsuite for {{if $ts.IsTip}}Go tip{{else}}Go 1.4.1{{end}} at {{$ts.Start}} </h2>
|
||||
<h2> Testsuite for {{if $ts.IsTip}}Go tip{{else}}Go 1.5{{end}} at {{$ts.Start}} </h2>
|
||||
<table class="build">
|
||||
<colgroup class="col-result" span="1"></colgroup>
|
||||
<colgroup class="col-result" span="1"></colgroup>
|
||||
|
|
Loading…
Reference in New Issue