Magnus pushed to branch wip/mangoiv/ci-backports at Glasgow Haskell Compiler / GHC
WARNING: The push did not contain any new commits, but force pushed to delete the commits and changes below.
Deleted commits:
-
3f4db087
by mangoiv at 2026-05-07T13:06:18+02:00
1 changed file:
Changes:
| ... | ... | @@ -22,7 +22,10 @@ function pull() { |
| 22 | 22 | # to set a larger http.postBuffer, although this is definitely a workaround.
|
| 23 | 23 | # The default should work just fine. The error could be in git, GitLab, or
|
| 24 | 24 | # perhaps the networking tube (including all proxies etc) between the two.
|
| 25 | - run git -c http.postBuffer=2097152 fetch -f "$NOTES_ORIGIN" "$ref:$ref"
|
|
| 25 | + # 2026-05-07: git fetch started failing again on darwin. Increased the low speed
|
|
| 26 | + # time. Removed the postbuffer change since we shouldn't actually be PUSHing anything
|
|
| 27 | + export GIT_CURL_VERBOSE=1
|
|
| 28 | + run git -c http.lowSpeedTime=600 fetch -f "$NOTES_ORIGIN" "$ref:$ref"
|
|
| 26 | 29 | echo "perf notes ref $ref is $(git rev-parse $ref)"
|
| 27 | 30 | }
|
| 28 | 31 |