Revert changes causing Windows release CI to fail#6450
Draft
Conversation
Contributor
|
LGTM |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #6450 +/- ##
==========================================
- Coverage 70.79% 70.77% -0.03%
==========================================
Files 427 427
Lines 117869 117690 -179
Branches 18935 18905 -30
==========================================
- Hits 83447 83295 -152
+ Misses 23154 23135 -19
+ Partials 11268 11260 -8 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
jasnell
approved these changes
Mar 28, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After re-running numerous CI jobs, it appears that 1f638e0 was the last commit where clang did not crash when building server.c++ (or was not crashing consistently at least). The next change affecting server.c++ was in #6059, revert this to restore the build.
I'm also reverting a commit that attempted to fix the issue but failed to do so. Note that this is one of two commits in #6402, with the other commit I'm not sure, it may or may not have fixed the crash for container-client.c++ whereas the commit reverted here tries to solve a problem that doesn't exist; the goto that it complains about was around since before we've started experiencing these crashes.
Reproduction of error and how this fixes it – see #6416: In f500ffd, we see that compilation of server.c++ fails for a Windows build modified to resemble release settings. But in the follow-up commit 38ad8c2 which has the reverts applied, CI is expected to pass.Still needs more work.