-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Makefile: remove the unit test function timeout check temporarily #27980
Conversation
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
Makefile
Outdated
$(GOTEST) -ldflags '$(TEST_LDFLAGS)' $(EXTRA_TEST_ARGS) -v -cover $(PACKAGES_WITHOUT_BR) -check.p true > gotest.log || { $(FAILPOINT_DISABLE); cat 'gotest.log'; exit 1; } | ||
@echo "timeout-check" | ||
grep 'PASS:' gotest.log | go run tools/check/check-timeout.go || { $(FAILPOINT_DISABLE); exit 1; } | ||
$(GOTEST) -ldflags '$(TEST_LDFLAGS)' $(EXTRA_TEST_ARGS) -v -cover $(PACKAGES_WITHOUT_BR) -check.p true || { $(FAILPOINT_DISABLE); exit 1; } |
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.
do we still need -v
? Also IIRC ci pipeline now uses cat gotest.log
for dumping logs.
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.
OK, I remove the -v
flag and still keep redirecting the stdout to gotest.log
to avoid CI pipeline modification.
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.
LGTM
@dragonly: Thanks for your review. The bot only counts approvals from reviewers and higher roles in list, but you're still welcome to leave your comments. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
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.
Thanks for submitting this PR. Looks good to me.
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 1319597
|
What problem does this PR solve?
Problem Summary:
check_dev is not stable enough.
In the past a timeout for each funcion is added to prevent single function from running too long.
However, it's hardware dependented and the CI workload is quite heavy, the time cost for a single function is not stable enough.
That has become a hinder for us to merge PRs, so it's better to disable the check temporarily.
What is changed and how it works?
What's Changed:
Do not check function timeout in the last step in CI
How it Works:
Remove the check code.
Check List
Tests
Side effects
Documentation
Release note