You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using -Werror on CI, the fact that warning flags change over time can lead to issues where code cannot be warning free across all supported versions. A solution is to toggle of certain warnings for specific GHC versions, but currently there is no way to specify --local-ghc-options for only some GHC versions.
The missing-methods warning is currently special-cased via cfgErrorMissingMethods, it would be nice if we could generalise this to specify "GHC flags per version range".
The text was updated successfully, but these errors were encountered:
When using
-Werror
on CI, the fact that warning flags change over time can lead to issues where code cannot be warning free across all supported versions. A solution is to toggle of certain warnings for specific GHC versions, but currently there is no way to specify--local-ghc-options
for only some GHC versions.The
missing-methods
warning is currently special-cased viacfgErrorMissingMethods
, it would be nice if we could generalise this to specify "GHC flags per version range".The text was updated successfully, but these errors were encountered: