Cheng Shao pushed to branch wip/fix-bagger at Glasgow Haskell Compiler / GHC

Commits:

2 changed files:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -247,8 +247,12 @@ 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
    +    - .gitlab/test-metrics.sh pull
    
    255
    +    - "false"
    
    252 256
       dependencies: []
    
    253 257
     
    
    254 258
     # Check that .T files all parse by listing broken tests.
    

  • .gitlab/test-metrics.sh
    ... ... @@ -24,7 +24,7 @@ function pull() {
    24 24
       git remote add perf-notes "$NOTES_ORIGIN" || true
    
    25 25
       git config fetch.recurseSubmodules false
    
    26 26
       git config remote.perf-notes.partialclonefilter tree:0
    
    27
    -  run git fetch --force perf-notes "$ref:$ref"
    
    27
    +  run git fetch --force perf-notes "$ref:$ref" --progress
    
    28 28
       echo "perf notes ref $ref is $(git rev-parse $ref)"
    
    29 29
     }
    
    30 30