Skip to content
Snippets Groups Projects
Commit 227b47b3 authored by Zubin's avatar Zubin
Browse files

hadrian: set -Wno-deprecations for directory

The filepath bump to 1.4.200.1 introduces a deprecation warning.

See #24240
    https://github.com/haskell/filepath/pull/206
parent 0765cedb
Loading
Checking pipeline status
......@@ -35,7 +35,9 @@ ghcWarningsArgs = do
, package binary ? pure [ "-Wno-deprecations" ]
, package bytestring ? pure [ "-Wno-inline-rule-shadowing" ]
, package compiler ? pure [ "-Wcpp-undef" ]
, package directory ? pure [ "-Wno-unused-imports" ]
, package directory ? pure [ "-Wno-unused-imports"
, "-Wno-deprecations"
]
, package ghc ? pure [ "-Wcpp-undef"
, "-Wincomplete-uni-patterns"
, "-Wincomplete-record-updates"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment