-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/coordinator,internal,maintner: prioritize relui builds
Populates a new User field on SchedItem which will keep track of either the gomote user or the commit author email for trybots. Sets relui related builds to the highest priority, PriorityUrgent. Fixes golang/go#48857 Change-Id: I8930a0e8c6bdb1becd454e953779f42f3885fbef Reviewed-on: https://go-review.googlesource.com/c/build/+/419428 Run-TryBot: Jenny Rakoczy <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Heschi Kreinick <[email protected]>
- Loading branch information
Showing
9 changed files
with
272 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,8 +57,6 @@ message GerritTryWorkItem { | |
string change_id = 3; // "I1a27695838409259d1586a0adfa9f92bccf7ceba" | ||
string commit = 4; // "ecf3dffc81dc21408fb02159af352651882a8383" | ||
|
||
int32 version = 9; // which Gerrit revision number commit is | ||
|
||
// go_commit is set for subrepos and is the Go commit(s) to test against. | ||
// go_branch is a branch name of go_commit, for showing to users when | ||
// a try set fails. | ||
|
@@ -73,6 +71,9 @@ message GerritTryWorkItem { | |
// try_message is the list of TRY=xxxx messages associated with Run-TryBot votes. | ||
// It's sorted from oldest to newest. | ||
repeated TryVoteMessage try_message = 8; | ||
|
||
int32 version = 9; // which Gerrit revision number commit is | ||
string author_email = 10; // "[email protected]" | ||
} | ||
|
||
message TryVoteMessage { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.