-
Notifications
You must be signed in to change notification settings - Fork 141
Fix cabal description #556
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Rendering of Description field was changed as some point and as of 3.0 version it uses haddock and trick with placing . strategically is no longer needed Fixes haskell#528
|
Unrelated to bug in question. MacOS13 image are no longer available. I dropped them from CI https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ |
lehins
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
| - { cabal: "3.14", os: macOS-13, ghc: "8.10.7" } | ||
| - { cabal: "3.14", os: macOS-13, ghc: "9.0.2" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of dropping them we should be able to switch to macOS-15-intel
| - { cabal: "3.14", os: macOS-13, ghc: "8.10.7" } | |
| - { cabal: "3.14", os: macOS-13, ghc: "9.0.2" } | |
| - { cabal: "3.14", os: macOS-15-intel, ghc: "8.10.7" } | |
| - { cabal: "3.14", os: macOS-15-intel, ghc: "9.0.2" } |
f3d830c to
cad774f
Compare
|
Yes But there're weird new CI failures:
I'll try to figure this out tomorrow |
Yes, this is because GHC 9.0.2 changed the ABI (see https://gitlab.haskell.org/ghc/ghc/-/issues/21423). I recently had the same issue and clearing the cache fixed it. |
* MacOS 13 imsage are not longer available https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ So switch to macOS-15-intel * Bust CI cache. There are some problems with GHC-9.0. Something happened and linker fails with weird errors.
aaa3257 to
fbd00da
Compare
|
That was cache problem |
Rendering of Description field was changed as some point and as of 3.0 version it uses haddock and trick with placing . strategically is no longer needed
I've checked haddock's output.
index.htmlis now generated properlyFixes #528