Cheng Shao pushed to branch wip/fix-bagger at Glasgow Haskell Compiler / GHC
Commits:
-
ef7e3f5c
by Cheng Shao at 2025-12-20T09:09:04+01:00
2 changed files:
Changes:
| ... | ... | @@ -247,8 +247,13 @@ ghc-linters: |
| 247 | 247 | lint-linters:
|
| 248 | 248 | image: "registry.gitlab.haskell.org/ghc/ci-images/linters:$DOCKER_REV"
|
| 249 | 249 | extends: .lint
|
| 250 | + stage: not-interruptible
|
|
| 251 | + tags:
|
|
| 252 | + - bagger
|
|
| 250 | 253 | script:
|
| 251 | - - mypy testsuite/tests/linters/regex-linters/*.py
|
|
| 254 | + - sudo chown ghc:ghc -R .
|
|
| 255 | + - .gitlab/test-metrics.sh pull
|
|
| 256 | + - "false"
|
|
| 252 | 257 | dependencies: []
|
| 253 | 258 | |
| 254 | 259 | # Check that .T files all parse by listing broken tests.
|
| ... | ... | @@ -23,8 +23,9 @@ function pull() { |
| 23 | 23 | # as needed.
|
| 24 | 24 | git remote add perf-notes "$NOTES_ORIGIN" || true
|
| 25 | 25 | git config fetch.recurseSubmodules false
|
| 26 | + git config http.postBuffer 2097152
|
|
| 26 | 27 | git config remote.perf-notes.partialclonefilter tree:0
|
| 27 | - run git fetch --force perf-notes "$ref:$ref"
|
|
| 28 | + run git fetch --force perf-notes "$ref:$ref" --progress
|
|
| 28 | 29 | echo "perf notes ref $ref is $(git rev-parse $ref)"
|
| 29 | 30 | }
|
| 30 | 31 |