-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
fixing issue with bazel shutdown causing circleci hung #2203
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: huang195 If they are not already assigned, you can assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/hold |
macos CI check is somewhat different from linux version, which uses a fixed 0.22 version of bazel. macos relies on brew which could install newer version of bazel. At the moment, it install 0.25 version of bazel. Update: bazel doesn't support older versions via brew (https://github.com/bazelbuild/homebrew-tap). ugh |
for macos, the flag |
@PiotrSikora @lizan @qiwzhang can you help take a look at this PR? I'm looking to revert some of the changes from this PR (#1914) as it's causing CircleCI to consistently hang. I'm at a loss with macos as brew is installing bazel 0.25 and it's introducing quite a bit of incompatibility issues that older version of bazel 0.22 that we are using for linux does not have. |
8699786
to
0cc35b2
Compare
FYI, after digging around on github on recently merged PRs onto the master branch, I see that the last time macos CI ran successfully was when brew installed 0.23 version of bazel :( |
add |
@lizan yeah I tried to add the flag, but the build hit other problems, so I removed the flag. See this circleci build that had this flag set to
Any idea what could be causing this problem? |
/test proxy-presubmit-asan |
@huang195: The following test failed, say
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 kubernetes/test-infra repository. I understand the commands that are listed here. |
@lizan I feel like going down a rabbit hole chasing down all the dependencies that bazel 0.25 on macos is causing. I'm going to open another PR that fixes all the other CI cases except macos, and close this one. As it's not one of the "required" CIs, hopefully, it will at least not block all the PRs that would otherwise succeed. |
bazel shutdown
is causing some clean up problems in circleci that's blocking CI.