Cheng Shao pushed to branch wip/fix-bagger at Glasgow Haskell Compiler / GHC Commits: 0a17e2d8 by Cheng Shao at 2025-12-20T09:38:10+01:00 ci: set http.postBuffer to mitigate perf notes timeout on some runners This patch sets http.postBuffer to mitigate the timeout when fetching perf notes on some runners with slow internet connection. Fixes #26684. - - - - - 1 changed file: - .gitlab/ci.sh Changes: ===================================== .gitlab/ci.sh ===================================== @@ -265,6 +265,15 @@ function setup() { # testsuite driver! git config gc.auto 0 + # Some runners still choke at the perf note fetch step, which has to + # do with slow internet connection, see + # https://docs.gitlab.com/topics/git/troubleshooting_git/#error-stream-0-was-n... + # for the http.postBuffer mitigation. It might seem + # counter-intuitive that "post buffer" helps with fetching, but git + # indeed issues post requests when fetching over https, it's a + # bidirectional negotiation with the remote. + git config http.postBuffer 52428800 + info "=====================================================" info "Toolchain versions" info "=====================================================" View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0a17e2d8932f2307263496cfbf00d875... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0a17e2d8932f2307263496cfbf00d875... You're receiving this email because of your account on gitlab.haskell.org.