[Git][ghc/ghc][wip/fix-bagger] WIP
Cheng Shao pushed to branch wip/fix-bagger at Glasgow Haskell Compiler / GHC Commits: 1829055d by Cheng Shao at 2025-12-20T09:07:11+01:00 WIP - - - - - 2 changed files: - .gitlab-ci.yml - .gitlab/test-metrics.sh Changes: ===================================== .gitlab-ci.yml ===================================== @@ -247,8 +247,13 @@ ghc-linters: lint-linters: image: "registry.gitlab.haskell.org/ghc/ci-images/linters:$DOCKER_REV" extends: .lint + stage: not-interruptible + tags: + - bagger-lint script: - - mypy testsuite/tests/linters/regex-linters/*.py + - sudo chown ghc:ghc -R . + - .gitlab/test-metrics.sh pull + - "false" dependencies: [] # Check that .T files all parse by listing broken tests. ===================================== .gitlab/test-metrics.sh ===================================== @@ -23,8 +23,9 @@ function pull() { # as needed. git remote add perf-notes "$NOTES_ORIGIN" || true git config fetch.recurseSubmodules false + git config http.postBuffer 2097152 git config remote.perf-notes.partialclonefilter tree:0 - run git fetch --force perf-notes "$ref:$ref" + run git fetch --force perf-notes "$ref:$ref" --progress echo "perf notes ref $ref is $(git rev-parse $ref)" } View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/1829055d7f8dfb383d777122a74f310b... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/1829055d7f8dfb383d777122a74f310b... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Cheng Shao (@TerrorJack)