-
Notifications
You must be signed in to change notification settings - Fork 177
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
Fix the coverage job #136
Fix the coverage job #136
Conversation
Eventually, this will fail if our build size grows any larger, but immediately, I hope that fixes the problem. |
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.
Removes 5Gb of build output and fixes coverage report. Approving.
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.
Looks good.
Overriding macOS build failure. |
* try to remove .o files after unit test run in coverage job * report size * try azure * pipe * pr * azure: build and run * names * use find to delete .o files * remove azure config
I believe the reason why the coverage job stopped working was our build output size. After running the unit tests with coverage on, I know delete all
.o
files, since for the report they are not needed anymore. This takes the build size down to about 5G from 10G, which makes the job succeed again in my testing.