-
Notifications
You must be signed in to change notification settings - Fork 136
update macos image from 11 to latest #5721
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
Conversation
@LarryOsterman @ahsonkhan any thoughts on the error we are hitting with the MacOS update?
It does appear to be an unused variable but I'm not sure why it isn't triggering on the other OSes. |
I believe the strictness of unused variable warnings and flags are compiler specific. So, the compiler on MacOS (clang?) happens to catch it but others like on Windows (MSVC) doesn't. That's one of the reasons why we test on multiple OSes, to get such coverage. The change seems reasonable for this PR, especially since it is in tests. That said, I'll let Larry follow-up on whether we should remove the lines all together, since he owns EventHubs. |
There are more issues showing up on the mac build now as well. I'd appreciate if someone on the c++ team could help with those issues so that we can get the mac build unblocked. |
Looks like the changes made in #5681 fixed the macos build issues. |
No description provided.