diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-02 16:39:20 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-08 05:28:42 -0500 |
commit | bc5cbce61b57f57cadf5c25fa3e60cf34c3b98ea (patch) | |
tree | 36350006a6f06895c8b6e74cd785ed18d5584d58 /.gitlab-ci.yml | |
parent | 1a9438594d6d5280dfe43e4e597dd0380963268d (diff) | |
download | haskell-bc5cbce61b57f57cadf5c25fa3e60cf34c3b98ea.tar.gz |
Add notes linter to testsuite
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34bc731138..a7b0c4d4fe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -194,9 +194,12 @@ ghc-linters: lint-notes: image: "registry.gitlab.haskell.org/ghc/ci-images/linters:$DOCKER_REV" - extends: .lint + extends: .lint-params + variables: + BUILD_FLAVOUR: default script: - - utils/notes-util/check.sh + - .gitlab/ci.sh configure + - .gitlab/ci.sh run_hadrian test --only="notes" dependencies: [] # Run mypy Python typechecker on linter scripts. |