-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Windows build produces empty symbol zip file #809
Comments
The build appears to run the
I don't know where it should run but in my opinion it needs to be much later in the process to pick up all the pdb files that are intended to be symbolized. |
This is potentially an issue with
According to this, we need MSVC 2013 installed: https://github.com/JPNaude/dev_notes/wiki/Using-Google-Breakpad-with-Qt#windows
But this issue documents that it might be a breaking change with VS 2017: csoltenborn/GoogleTestAdapter#124 Pointing to this VS 2017 readme: https://docs.microsoft.com/en-us/visualstudio/extensibility/breaking-changes-2017#change-reduce-registry-impact It might be something that the |
According to this the path needed to be set to find the
I will add this to the path in our build job. |
Ok, after adding the path above to the build job, it produces a zip file with 3 symbols, while it should contain dozens. It appears its still running early in the build process, as step 5584 of 34028, I believe its so early that there are only a few pdb files to process:
The zip only contains 3 symbols:
I will continue to work on this to run the symbol generation later in the process. |
This makes sure all the symbol files have been copied to the output directory before generating breakpad symbols. Fixes brave/brave-browser#809
This makes sure all the symbol files have been copied to the output directory before generating breakpad symbols. Fixes brave/brave-browser#809
The zip file should have the
brave.breakpad.syms
directory as it does in the muon builds. Yet it only contains two files:The text was updated successfully, but these errors were encountered: