-
Notifications
You must be signed in to change notification settings - Fork 100
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
Explore challenging intermittent nightly test failures #3148
base: master
Are you sure you want to change the base?
Explore challenging intermittent nightly test failures #3148
Conversation
…cument instead of RunUI(SkylineWindow.OpenFile)
…omDiaUmpireOutput
…eportTutorialTestProgress to always write screen shot text info to console whether screenshots are enabled or not
…s' of https://github.com/ProteoWizard/pwiz into Skyline/work/20240905_what_is_up_with_tests_on_jason_xps
…ft.com/en-us/sysinternals/downloads/procdump) on itself to try to understand hangs
…s' of https://github.com/ProteoWizard/pwiz into Skyline/work/20240905_what_is_up_with_tests_on_jason_xps
…clone on unstable networks
@@ -196,6 +196,8 @@ public static bool CreateBuildCommands( | |||
|
|||
commandShell.Add("#@ Checking out {0} source files...\n", branchName); | |||
commandShell.Add("# Checking out {0} source files...", branchName); | |||
commandShell.Add("# Setting git's http postBuffer size to 500MB, should help with clone on unstable networks"); | |||
commandShell.Add("{0} config --global http.postBuffer 524288000", git.Quote()); |
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.
Doing git config --global
has the effect of modifying the .gitconfig file in the user's home directory.
I would recommend instead adding -c http.postBuffer=524288000
to the actual clone commands:
git -c http.postBuffer=524288000 clone ...
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.
Nice, thanks.
…ration of the clone
…successfully launched in nightly run
I have performed the necessary TeamCity voodoo for the renamed branch to be used for Integration builds. |
Hah, wait, no - the branch wasn't renamed, just the description. |
…s' of https://github.com/ProteoWizard/pwiz into Skyline/work/20240905_what_is_up_with_tests_on_jason_xps
… 2018 change to build-aps.bat that made mention of debug-symbols imply debug=on
…s' of https://github.com/ProteoWizard/pwiz into Skyline/work/20240905_what_is_up_with_tests_on_jason_xps
… uses of WaitForOpenForm<MultiButtonMsgDlg>() to insist on finding message dialog plausibly matching the format when messageFormat has parameter place holders (e.g. "Found {0} items in {1}.")
… a warning and don't do anything at all to the SpectrumList's data processing
…portAsSmallMolecules
… comparing test run results
…memory corruption issues
…nsole, trying to figure out where this hangs
…correction is requested for non-Waters data, just issue a warning and don't do anything at all to the ChromatogramList's data processing. Also, flush cerr after writing the warning about no being able to apply the requested lockmass correction.
Integration branch to try to understand test failures on JASON-XPS