Magnus pushed to branch wip/mangoiv/ci-backports at Glasgow Haskell Compiler / GHC
Commits:
-
f3e714d4
by mangoiv at 2026-05-07T11:26:31+02:00
1 changed file:
Changes:
| ... | ... | @@ -22,7 +22,9 @@ 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 | + run GIT_CURL_VERBOSE=1 git -c http.lowSpeedTime=600 fetch -f "$NOTES_ORIGIN" "$ref:$ref"
|
|
| 26 | 28 | echo "perf notes ref $ref is $(git rev-parse $ref)"
|
| 27 | 29 | }
|
| 28 | 30 |