Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(10)

Issue 7174046: code review 7174046: misc/dashboard/builder: automatic update functionality

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 1 month ago by adg
Modified:
11 years, 2 months ago
Reviewers:
minux1, dave, rsc
CC:
golang-dev
Visibility:
Public.

Description

misc/dashboard/builder: automatic update functionality

Patch Set 1 #

Patch Set 2 : diff -r 7dc8d66efb6d https://code.google.com/p/go #

Total comments: 9

Patch Set 3 : diff -r 7929ab4ff133 https://code.google.com/p/go #

Patch Set 4 : diff -r 7929ab4ff133 https://code.google.com/p/go #

Patch Set 5 : diff -r f50a112bfe3b https://code.google.com/p/go #

Patch Set 6 : diff -r f50a112bfe3b https://code.google.com/p/go #

Patch Set 7 : diff -r 2becc54569bf https://code.google.com/p/go #

Patch Set 8 : diff -r 2becc54569bf https://code.google.com/p/go #

Patch Set 9 : diff -r bfb45be43e2b https://code.google.com/p/go #

Patch Set 10 : diff -r bfb45be43e2b https://code.google.com/p/go #

Patch Set 11 : diff -r bfb45be43e2b https://code.google.com/p/go #

Patch Set 12 : diff -r bfb45be43e2b https://code.google.com/p/go #

Unified diffs Side-by-side diffs Delta from patch set Stats (+188 lines, -24 lines) Patch
M misc/dashboard/builder/main.go View 1 2 3 4 5 6 7 8 9 10 11 11 chunks +36 lines, -24 lines 0 comments Download
A misc/dashboard/builder/update.go View 1 2 3 4 5 6 7 8 1 chunk +131 lines, -0 lines 0 comments Download
A misc/dashboard/builder/update_test.go View 1 2 3 4 5 6 7 8 9 1 chunk +21 lines, -0 lines 0 comments Download

Messages

Total messages: 20
minux1
https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/main.go File misc/dashboard/builder/main.go (left): https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/main.go#oldcode51 misc/dashboard/builder/main.go:51: commitFlag = flag.Bool("commit", false, "upload information about new commits") ...
12 years, 1 month ago (2013-01-22 13:28:13 UTC) #1
adg
https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/main.go File misc/dashboard/builder/main.go (left): https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/main.go#oldcode51 misc/dashboard/builder/main.go:51: commitFlag = flag.Bool("commit", false, "upload information about new commits") ...
12 years, 1 month ago (2013-01-23 03:28:13 UTC) #2
adg
PTAL https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/update.go File misc/dashboard/builder/update.go (right): https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/update.go#newcode25 misc/dashboard/builder/update.go:25: const builderVersion = "TBA" // TODO(adg): set after ...
12 years, 1 month ago (2013-01-23 05:25:50 UTC) #3
minux1
https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/update.go File misc/dashboard/builder/update.go (right): https://codereview.appspot.com/7174046/diff/2001/misc/dashboard/builder/update.go#newcode55 misc/dashboard/builder/update.go:55: binary := filepath.Join(*buildroot, "builder-"+rev) On 2013/01/23 05:25:50, adg wrote: ...
12 years, 1 month ago (2013-01-23 11:15:24 UTC) #4
adg
12 years, 1 month ago (2013-01-24 23:34:14 UTC) #5
adg
Hello bradfitz@golang.org, minux.ma@gmail.com (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://code.google.com/p/go
12 years, 1 month ago (2013-01-24 23:34:32 UTC) #6
adg
On 2013/01/23 11:15:24, minux wrote: > I'm just slightly concerned about old binaries filling the ...
12 years, 1 month ago (2013-01-30 00:50:59 UTC) #7
minux1
On Wed, Jan 30, 2013 at 8:50 AM, <adg@golang.org> wrote: > On 2013/01/23 11:15:24, minux ...
12 years, 1 month ago (2013-01-30 08:21:38 UTC) #8
adg
On 30 January 2013 19:21, minux <minux.ma@gmail.com> wrote: > > On Wed, Jan 30, 2013 ...
12 years, 1 month ago (2013-02-01 00:13:50 UTC) #9
adg
PTAL
12 years ago (2013-02-21 02:42:57 UTC) #10
dave_cheney.net
Hello, In general I am wary of a binary replacing itself, I think it is ...
12 years ago (2013-02-23 22:33:00 UTC) #11
adg
That's a lot more complex than what I have here. The way I figure it: ...
12 years ago (2013-02-26 00:08:30 UTC) #12
dave_cheney.net
That is a fair statement, this doesn't sound like the most important thing for you ...
12 years ago (2013-02-26 00:10:20 UTC) #13
adg
On 24 February 2013 09:33, <dave@cheney.net> wrote: > 2. determines the builder version it needs ...
12 years ago (2013-02-26 00:15:28 UTC) #14
dave_cheney.net
I hadn't really thought about it too much, probably by inspecting the source in $WORKSPACE/goroot/... ...
12 years ago (2013-02-26 00:17:32 UTC) #15
adg
On 26 February 2013 11:17, Dave Cheney <dave@cheney.net> wrote: > I hadn't really thought about ...
12 years ago (2013-02-26 00:20:28 UTC) #16
dave_cheney.net
Here is the logic that I had in mind 1. parent starts, creates or updates ...
12 years ago (2013-02-26 00:24:37 UTC) #17
adg
Seems reasonable. I guess you can re-use the parts of this CL that relate to ...
12 years ago (2013-02-28 02:21:47 UTC) #18
dave_cheney.net
Cool. It is on my todo list for next week. On Thu, Feb 28, 2013 ...
12 years ago (2013-02-28 02:22:46 UTC) #19
rsc
11 years, 2 months ago (2013-12-18 04:14:54 UTC) #20
R=close

(timed out)
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b