-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add a few comments for the toolstate stuff #1
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,10 @@ commit_toolstate_change() { | |
MESSAGE_FILE="$1" | ||
shift | ||
for RETRY_COUNT in 1 2 3 4 5; do | ||
# Call the callback; this will in the end call `change_toolstate` from | ||
# `checktools.sh` if we are in the `auto` branch (pre-landing) or | ||
# `src/tools/publish_toolstate.py` if we are in the `master` branch | ||
# (post-landing). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kennytm is this correct? I am not entirely sure about this. The call with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. (The call from CI is |
||
"$@" | ||
# `git commit` failing means nothing to commit. | ||
FAILURE=0 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kennytm should we say that the list of "nightly" tools here and of
REGRESSION_OK
tools inpublish_toolstate.py
should be in sync?(Ideally they could source from the same data but I am not sure what a good way to do that would be.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes ideally these should be in sync.