diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2023-01-25 10:05:26 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-01-25 14:48:51 -0500 |
commit | b7efdb24744d0788c8d0a9f132900c39acee6a7b (patch) | |
tree | 1ef5faffbd4810831d0994df558a376827822f99 | |
parent | 13a0566b58ecc295883b11f20045b4214d8acd72 (diff) | |
download | haskell-b7efdb24744d0788c8d0a9f132900c39acee6a7b.tar.gz |
ci: Disable HLint job due to excessive runtime
The HLint jobs takes much longer to run (20 minutes) after "Give the RTS it's own configure script" eb5a6b91
Now the CI job will build the stage0 compiler before it generates the necessary RTS headers.
We either need to:
* Fix the linting rules so they take much less time
* Revert the commit
* Remove the linting of base from the hlint job
* Remove the hlint job
This is highest priority as it is affecting all CI pipelines.
For now I am just disabling the job because there are many more pressing
matters at hand.
Ticket #22830
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1304e4aa11..548f0b6cdb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -329,7 +329,8 @@ lint-submods-branch: paths: - cabal-cache -hlint-ghc-and-base: +# Disabled due to #22830 +.hlint-ghc-and-base: extends: .lint-params image: "registry.gitlab.haskell.org/ghc/ci-images/linters:$DOCKER_REV" variables: |