The build succeeded. 0 test suites succeeded, 0 failed.

Build log

> /tmp/stackage-build2456$ stack unpack mmorph-1.1.2@sha256:09de0fe025a2d6887d766ead64b5537a0f8dad7331879668574e76b7d9682682
Unpacked mmorph-1.1.2 to /tmp/stackage-build2456/mmorph-1.1.2/
> /tmp/stackage-build2456/mmorph-1.1.2$ ghc -clear-package-db -global-package-db -package-db=/home/circleci/project/builds/nightly/pkgdb Setup
[1 of 1] Compiling Main             ( Setup.hs, Setup.o )
Linking Setup ...
> /tmp/stackage-build2456/mmorph-1.1.2$ ./Setup configure --package-db=clear --package-db=global --package-db=/home/circleci/project/builds/nightly/pkgdb --libdir=/home/circleci/project/builds/nightly/lib --bindir=/home/circleci/project/builds/nightly/bin --datadir=/home/circleci/project/builds/nightly/share --libexecdir=/home/circleci/project/builds/nightly/libexec --sysconfdir=/home/circleci/project/builds/nightly/etc --docdir=/home/circleci/project/builds/nightly/doc/mmorph-1.1.2 --htmldir=/home/circleci/project/builds/nightly/doc/mmorph-1.1.2 --haddockdir=/home/circleci/project/builds/nightly/doc/mmorph-1.1.2
Configuring mmorph-1.1.2...
> /tmp/stackage-build2456/mmorph-1.1.2$ ghc -clear-package-db -global-package-db -package-db=/home/circleci/project/builds/nightly/pkgdb Setup
> /tmp/stackage-build2456/mmorph-1.1.2$ ./Setup build
Preprocessing library for mmorph-1.1.2..
Building library for mmorph-1.1.2..
[1 of 2] Compiling Control.Monad.Morph ( src/Control/Monad/Morph.hs, dist/build/Control/Monad/Morph.o )

src/Control/Monad/Morph.hs:80:1: warning: [-Wdeprecations]
    Module ‘Control.Monad.Trans.Error’ is deprecated:
      Use Control.Monad.Trans.Except instead
   |
80 | import qualified Control.Monad.Trans.Error         as E
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Control/Monad/Morph.hs:83:1: warning: [-Wdeprecations]
    Module ‘Control.Monad.Trans.List’ is deprecated:
      This transformer is invalid on most monads
   |
83 | import qualified Control.Monad.Trans.List          as L
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Control/Monad/Morph.hs:119:20: warning: [-Wdeprecations]
    In the use of type constructor or class ‘ErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
119 | instance MFunctor (E.ErrorT e) where
    |                    ^^^^^^^^

src/Control/Monad/Morph.hs:120:19: warning: [-Wdeprecations]
    In the use of data constructor ‘ErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
120 |     hoist nat m = E.ErrorT (nat (E.runErrorT m))
    |                   ^^^^^^^^

src/Control/Monad/Morph.hs:120:34: warning: [-Wdeprecations]
    In the use of ‘runErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
120 |     hoist nat m = E.ErrorT (nat (E.runErrorT m))
    |                                  ^^^^^^^^^^^

src/Control/Monad/Morph.hs:128:19: warning: [-Wdeprecations]
    In the use of type constructor or class ‘ListT’
    (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
128 | instance MFunctor L.ListT where
    |                   ^^^^^^^

src/Control/Monad/Morph.hs:129:19: warning: [-Wdeprecations]
    In the use of data constructor ‘ListT’
    (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
129 |     hoist nat m = L.ListT (nat (L.runListT m))
    |                   ^^^^^^^

src/Control/Monad/Morph.hs:129:33: warning: [-Wdeprecations]
    In the use of ‘runListT’ (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
129 |     hoist nat m = L.ListT (nat (L.runListT m))
    |                                 ^^^^^^^^^^

src/Control/Monad/Morph.hs:240:11: warning: [-Wdeprecations]
    In the use of type constructor or class ‘Error’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
240 | instance (E.Error e) => MMonad (E.ErrorT e) where
    |           ^^^^^^^

src/Control/Monad/Morph.hs:240:33: warning: [-Wdeprecations]
    In the use of type constructor or class ‘ErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
240 | instance (E.Error e) => MMonad (E.ErrorT e) where
    |                                 ^^^^^^^^

src/Control/Monad/Morph.hs:241:17: warning: [-Wdeprecations]
    In the use of data constructor ‘ErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
241 |     embed f m = E.ErrorT (do
    |                 ^^^^^^^^

src/Control/Monad/Morph.hs:242:14: warning: [-Wdeprecations]
    In the use of ‘runErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
242 |         x <- E.runErrorT (f (E.runErrorT m))
    |              ^^^^^^^^^^^

src/Control/Monad/Morph.hs:242:30: warning: [-Wdeprecations]
    In the use of ‘runErrorT’
    (imported from Control.Monad.Trans.Error):
    Deprecated: "Use Control.Monad.Trans.Except instead"
    |
242 |         x <- E.runErrorT (f (E.runErrorT m))
    |                              ^^^^^^^^^^^

src/Control/Monad/Morph.hs:259:17: warning: [-Wdeprecations]
    In the use of type constructor or class ‘ListT’
    (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
259 | instance MMonad L.ListT where
    |                 ^^^^^^^

src/Control/Monad/Morph.hs:260:17: warning: [-Wdeprecations]
    In the use of data constructor ‘ListT’
    (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
260 |     embed f m = L.ListT (do
    |                 ^^^^^^^

src/Control/Monad/Morph.hs:261:14: warning: [-Wdeprecations]
    In the use of ‘runListT’ (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
261 |         x <- L.runListT (f (L.runListT m))
    |              ^^^^^^^^^^

src/Control/Monad/Morph.hs:261:29: warning: [-Wdeprecations]
    In the use of ‘runListT’ (imported from Control.Monad.Trans.List):
    Deprecated: "This transformer is invalid on most monads"
    |
261 |         x <- L.runListT (f (L.runListT m))
    |                             ^^^^^^^^^^
[2 of 2] Compiling Control.Monad.Trans.Compose ( src/Control/Monad/Trans/Compose.hs, dist/build/Control/Monad/Trans/Compose.o )
> /tmp/stackage-build2456/mmorph-1.1.2$ ghc -clear-package-db -global-package-db -package-db=/home/circleci/project/builds/nightly/pkgdb Setup
> /tmp/stackage-build2456/mmorph-1.1.2$ ./Setup copy
Installing library in /home/circleci/project/builds/nightly/lib/x86_64-linux-ghc-8.7.20181116/mmorph-1.1.2-9d0zHFDN5zgb3Dl1w70bw
> /tmp/stackage-build2456/mmorph-1.1.2$ ghc -clear-package-db -global-package-db -package-db=/home/circleci/project/builds/nightly/pkgdb Setup
> /tmp/stackage-build2456/mmorph-1.1.2$ ./Setup register
Registering library for mmorph-1.1.2..