You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Part of #120. Found while verifying the #162 merge.
Symptom
On Windows, Set-BuildEnvironment hangs forever when the HEAD commit message is large. Nothing
is printed, no error, no timeout — the build never starts.
This is currently happening on main. The push-triggered CI run for 9720cb7 hung both Windows
legs for 27+ minutes with zero output (ubuntu and macOS passed); I cancelled it. Every local ./build.ps1 on Windows hangs the same way, because build.ps1 calls Set-BuildEnvironment -Force before Invoke-psake.
Root cause
BuildHelpers\Invoke-Git (2.0.16) redirects both output streams and then waits for the process
to exit before reading them:
$pinfo.RedirectStandardError=$RedirectStandardError# $true$pinfo.RedirectStandardOutput=$RedirectStandardOutput# $true
...
$null=$p.Start()
$p.WaitForExit() # <-- blocks here
...
$stdout=$p.StandardOutput.ReadToEnd() # <-- never reached
When git writes more than the pipe buffer holds, git blocks waiting for someone to drain the
pipe, and Invoke-Git blocks waiting for git to exit. Neither can proceed. It is the textbook WaitForExit-before-ReadToEnd deadlock described in the ProcessStartInfo.RedirectStandardOutput remarks.
Get-BuildVariable calls it as Invoke-Git log --format=%B -n 1 <sha> to populate $env:BHCommitMessage, so the payload is the full commit message body.
Reproduction
Measured on Windows 11, PowerShell 7.6.4, BuildHelpers 2.0.16, against real commits on main:
Commit
Message size
Result
f726f48
2617 bytes
returns
64b7207
5498 bytes
returns
9720cb7
5757 bytes
hangs
Import-Module BuildHelpers
Invoke-Git-Arguments 'log --format=%B -n 1 9720cb7'# never returns on Windows
Linux and macOS have a larger pipe buffer and do not hit the threshold at these sizes, which is
why only the Windows legs hang.
Why CI did not catch it before merge
On a pull_request event, GitHub checks out a synthetic merge commit whose message is short
(Merge <sha> into <sha>). The real squash message only becomes HEAD on the push to main. Every PR will be green and then hang main if its squashed body is large enough.
This repository writes long PR bodies and squash-merges them verbatim, so the trigger is not
exotic — it is the house style. #163 and #165 both have bodies over the threshold today.
Consumer impact
This is not only a repo-internal problem. Initialize-PSBuild calls Set-BuildEnvironment, so
any consumer building on Windows hangs when their own HEAD commit message crosses the threshold.
A hang with no output is a bad failure mode to ship at 1.0.0.
Options
Stop passing the payload through Invoke-Git. Populate $env:BHCommitMessage ourselves
before calling Set-BuildEnvironment, or truncate it. Narrow, immediate, ours to control
Fix upstream. Read the streams asynchronously (BeginOutputReadLine, or ReadToEnd
before WaitForExit) and PR it to BuildHelpers, then raise the RequiredModules floor once
released. Correct fix, slowest path
Trim squash commit messages at merge time. Pure process change, no code — but it depends
on every future merge remembering, and it does nothing for consumers
Part of #120. Found while verifying the #162 merge.
Symptom
On Windows,
Set-BuildEnvironmenthangs forever when the HEAD commit message is large. Nothingis printed, no error, no timeout — the build never starts.
This is currently happening on
main. The push-triggered CI run for9720cb7hung both Windowslegs for 27+ minutes with zero output (ubuntu and macOS passed); I cancelled it. Every local
./build.ps1on Windows hangs the same way, becausebuild.ps1callsSet-BuildEnvironment -ForcebeforeInvoke-psake.Root cause
BuildHelpers\Invoke-Git(2.0.16) redirects both output streams and then waits for the processto exit before reading them:
When git writes more than the pipe buffer holds, git blocks waiting for someone to drain the
pipe, and
Invoke-Gitblocks waiting for git to exit. Neither can proceed. It is the textbookWaitForExit-before-ReadToEnddeadlock described in theProcessStartInfo.RedirectStandardOutput remarks.
Get-BuildVariablecalls it asInvoke-Git log --format=%B -n 1 <sha>to populate$env:BHCommitMessage, so the payload is the full commit message body.Reproduction
Measured on Windows 11, PowerShell 7.6.4, BuildHelpers 2.0.16, against real commits on
main:f726f4864b72079720cb7Linux and macOS have a larger pipe buffer and do not hit the threshold at these sizes, which is
why only the Windows legs hang.
Why CI did not catch it before merge
On a
pull_requestevent, GitHub checks out a synthetic merge commit whose message is short(
Merge <sha> into <sha>). The real squash message only becomes HEAD on thepushtomain.Every PR will be green and then hang
mainif its squashed body is large enough.This repository writes long PR bodies and squash-merges them verbatim, so the trigger is not
exotic — it is the house style. #163 and #165 both have bodies over the threshold today.
Consumer impact
This is not only a repo-internal problem.
Initialize-PSBuildcallsSet-BuildEnvironment, soany consumer building on Windows hangs when their own HEAD commit message crosses the threshold.
A hang with no output is a bad failure mode to ship at 1.0.0.
Options
Invoke-Git. Populate$env:BHCommitMessageourselvesbefore calling
Set-BuildEnvironment, or truncate it. Narrow, immediate, ours to controlBeginOutputReadLine, orReadToEndbefore
WaitForExit) and PR it to BuildHelpers, then raise theRequiredModulesfloor oncereleased. Correct fix, slowest path
on every future merge remembering, and it does nothing for consumers
because [Tracking] PowerShellBuild v1.0.0 roadmap #120 already asks what 1.0.0 should depend on
Options 1 and 2 are not exclusive: 1 unblocks now, 2 fixes it for everyone.
Immediate mitigation
Until this is fixed, squash-merge with a short commit body on this repo. The full PR
description stays on the pull request either way.
Done when
./build.ps1and Windows CI complete regardless of HEAD commit message size, with a regressiontest covering a message larger than the pipe buffer.