build devShells.x86_64-linux.ghc9102

  1. 1760.29 s [extra] fromRight 1 (Left "foo") == 1
  2. 1760.29 s [extra] +++ OK, passed 100 tests.
  3. 1760.29 s [extra] \x -> fromLeft' (Left x) == x
  4. 1760.29 s [extra] +++ OK, passed 100 tests.
  5. 1760.29 s [extra] \x -> fromLeft' (Right x) == undefined
  6. 1760.29 s [extra] +++ OK, passed 100 tests.
  7. 1760.29 s [extra] \x -> fromRight' (Right x) == x
  8. 1760.29 s [extra] +++ OK, passed 100 tests.
  9. 1760.29 s [extra] \x -> fromRight' (Left x) == undefined
  10. 1760.29 s [extra] +++ OK, passed 100 tests.
  11. 1760.29 s [extra] \x -> fromEither (Left x ) == x
  12. 1760.29 s [extra] +++ OK, passed 100 tests.
  13. 1760.29 s [extra] \x -> fromEither (Right x) == x
  14. 1760.29 s [extra] +++ OK, passed 100 tests.
  15. 1760.29 s [extra] \a b -> maybeToEither a (Just b) == Right b
  16. 1760.29 s [extra] +++ OK, passed 100 tests.
  17. 1760.29 s [extra] \a -> maybeToEither a Nothing == Left a
  18. 1760.29 s [extra] +++ OK, passed 100 tests.
  19. 1760.29 s [extra] \x -> eitherToMaybe (Left x) == Nothing
  20. 1760.29 s [extra] +++ OK, passed 100 tests.
  21. 1760.29 s [extra] \x -> eitherToMaybe (Right x) == Just x
  22. 1760.29 s [extra] +++ OK, passed 100 tests.
  23. 1760.29 s [extra] mapLeft show (Left 1) == Left "1"
  24. 1760.29 s [extra] +++ OK, passed 100 tests.
  25. 1760.29 s [extra] mapLeft show (Right True) == Right True
  26. 1760.29 s [extra] +++ OK, passed 100 tests.
  27. 1760.29 s [extra] mapRight show (Left 1) == Left 1
  28. 1760.29 s [extra] +++ OK, passed 100 tests.
  29. 1760.29 s [extra] mapRight show (Right True) == Right "True"
  30. 1760.29 s [extra] +++ OK, passed 100 tests.
  31. 1760.29 s [extra] \xs -> repeatedly (splitAt 3) xs == chunksOf 3 xs
  32. 1760.29 s [extra] +++ OK, passed 100 tests.
  33. 1760.29 s [extra] \xs -> repeatedly word1 (trim xs) == words xs
  34. 1760.29 s [extra] +++ OK, passed 100 tests.
  35. 1760.29 s [extra] \xs -> repeatedly line1 xs == lines xs
  36. 1760.29 s [extra] +++ OK, passed 100 tests.
  37. 1760.29 s [extra] disjoint [1,2,3] [4,5] == True
  38. 1760.29 s [extra] +++ OK, passed 100 tests.
  39. 1760.29 s [extra] disjoint [1,2,3] [4,1] == False
  40. 1760.29 s [extra] +++ OK, passed 100 tests.
  41. 1760.29 s [extra] disjointOrd [1,2,3] [4,5] == True
  42. 1760.29 s [extra] +++ OK, passed 100 tests.
  43. 1760.29 s [extra] disjointOrd [1,2,3] [4,1] == False
  44. 1760.29 s [extra] +++ OK, passed 100 tests.
  45. 1760.29 s [extra] disjointOrdBy (compare `on` (`mod` 7)) [1,2,3] [4,5] == True
  46. 1760.29 s [extra] +++ OK, passed 100 tests.
  47. 1760.29 s [extra] disjointOrdBy (compare `on` (`mod` 7)) [1,2,3] [4,8] == False
  48. 1760.29 s [extra] +++ OK, passed 100 tests.
  49. 1760.29 s [extra] anySame [1,1,2] == True
  50. 1760.29 s [extra] +++ OK, passed 100 tests.
  51. 1760.29 s [extra] anySame [1,2,3] == False
  52. 1760.29 s [extra] +++ OK, passed 100 tests.
  53. 1760.29 s [extra] anySame (1:2:1:undefined) == True
  54. 1760.29 s [extra] +++ OK, passed 100 tests.
  55. 1760.29 s [extra] anySame [] == False
  56. 1760.29 s [extra] +++ OK, passed 100 tests.
  57. 1760.29 s [extra] \xs -> anySame xs == (length (nub xs) < length xs)
  58. 1760.29 s [extra] +++ OK, passed 100 tests.
  59. 1760.29 s [extra] allSame [1,1,2] == False
  60. 1760.29 s [extra] +++ OK, passed 100 tests.
  61. 1760.29 s [extra] allSame [1,1,1] == True
  62. 1760.29 s [extra] +++ OK, passed 100 tests.
  63. 1760.29 s [extra] allSame [1] == True
  64. 1760.29 s [extra] +++ OK, passed 100 tests.
  65. 1760.29 s [extra] allSame [] == True
  66. 1760.29 s [extra] +++ OK, passed 100 tests.
  67. 1760.29 s [extra] allSame (1:1:2:undefined) == False
  68. 1760.29 s [extra] +++ OK, passed 100 tests.
  69. 1760.29 s [extra] \xs -> allSame xs == (length (nub xs) <= 1)
  70. 1760.29 s [extra] +++ OK, passed 100 tests.
  71. 1760.29 s [extra] headDef 1 [] == 1
  72. 1760.29 s [extra] +++ OK, passed 100 tests.
  73. 1760.29 s [extra] headDef 1 [2,3,4] == 2
  74. 1760.29 s [extra] +++ OK, passed 100 tests.
  75. 1760.29 s [extra] \x xs -> headDef x xs == fromMaybe x (listToMaybe xs)
  76. 1760.29 s [extra] +++ OK, passed 100 tests.
  77. 1760.29 s [extra] lastDef 1 [] == 1
  78. 1760.29 s [extra] +++ OK, passed 100 tests.
  79. 1760.29 s [extra] lastDef 1 [2,3,4] == 4
  80. 1760.29 s [extra] +++ OK, passed 100 tests.
  81. 1760.29 s [extra] \x xs -> lastDef x xs == last (x:xs)
  82. 1760.29 s [extra] +++ OK, passed 100 tests.
  83. 1760.29 s [extra] [2,3,4] !? 1 == Just 3
  84. 1760.29 s [extra] +++ OK, passed 100 tests.
  85. 1760.29 s [extra] [2,3,4] !? (-1) == Nothing
  86. 1760.29 s [extra] +++ OK, passed 100 tests.
  87. 1760.29 s [extra] [] !? 0 == Nothing
  88. 1760.29 s [extra] +++ OK, passed 100 tests.
  89. 1760.29 s [extra] notNull [] == False
  90. 1760.29 s [extra] +++ OK, passed 100 tests.
  91. 1760.29 s [extra] notNull [1] == True
  92. 1760.29 s [extra] +++ OK, passed 100 tests.
  93. 1760.29 s [extra] \xs -> notNull xs == not (null xs)
  94. 1760.29 s [extra] +++ OK, passed 100 tests.
  95. 1760.29 s [extra] list 1 (\v _ -> v - 2) [5,6,7] == 3
  96. 1760.29 s [extra] +++ OK, passed 100 tests.
  97. 1760.29 s [extra] list 1 (\v _ -> v - 2) [] == 1
  98. 1760.29 s [extra] +++ OK, passed 100 tests.
  99. 1760.29 s [foldl] include semigroupoids-6.0.1-9FoUHGd3cSv9csmslt6yTE
  100. 1760.29 s [foldl] include text-2.1.2-9845
  101. 1760.29 s [foldl] include transformers-0.6.1.1-407f
  102. 1760.29 s [foldl] include unordered-containers-0.2.20.1-191HHq0EiVBAwoS0jzVXN0
  103. 1760.29 s [foldl] include vector-0.13.2.0-6XtMmq2Ff9ODcKEbpcqiG
  104. 1760.29 s [foldl] Control.Foldl=foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ:Control.Foldl,Control.Foldl.ByteString=foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ:Control.Foldl.ByteString,Control.Foldl.NonEmpty=foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ:Control.Foldl.NonEmpty,Control.Foldl.Text=foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ:Control.Foldl.Text,Control.Scanl=foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ:Control.Scanl
  105. 1760.29 s [foldl] Ready component graph:
  106. 1760.29 s [foldl] definite foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ
  107. 1760.29 s [foldl] depends base-4.20.1.0-2277
  108. 1760.29 s [foldl] depends bytestring-0.12.2.0-5835
  109. 1760.29 s [foldl] depends comonad-5.0.9-9ZXCMzc1LIuHPeefBB1gBv
  110. 1760.29 s [foldl] depends containers-0.7-dff9
  111. 1760.29 s [foldl] depends contravariant-1.5.5-9L710Gv0mfPBKPKJUl0pIA
  112. 1760.29 s [foldl] depends hashable-1.5.0.0-JQMp8nD7eXDLx6QkBmTwVb
  113. 1760.29 s [foldl] depends primitive-0.9.1.0-IS0Uswzbk4H38TsU65qNKd
  114. 1760.29 s [foldl] depends profunctors-5.6.3-AfxdEbA4qEx21xJFq5OvWx
  115. 1760.29 s [foldl] depends random-1.2.1.3-8klJqjF3xhRCzBrgK1uJlY
  116. 1760.29 s [foldl] depends semigroupoids-6.0.1-9FoUHGd3cSv9csmslt6yTE
  117. 1760.29 s [foldl] depends text-2.1.2-9845
  118. 1760.29 s [foldl] depends transformers-0.6.1.1-407f
  119. 1760.29 s [foldl] depends unordered-containers-0.2.20.1-191HHq0EiVBAwoS0jzVXN0
  120. 1760.29 s [foldl] depends vector-0.13.2.0-6XtMmq2Ff9ODcKEbpcqiG
  121. 1760.29 s [foldl] definite foldl-1.4.18-HANDLssYZKV2jH7jmfmu42-doctest
  122. 1760.29 s [foldl] depends base-4.20.1.0-2277
  123. 1760.29 s [foldl] depends doctest-0.24.2-H4FgSSwrzQD6JTD7tYQanP
  124. 1760.29 s [foldl] Using Cabal-3.12.1.0 compiled by ghc-9.10
  125. 1760.29 s [foldl] Using compiler: ghc-9.10.2
  126. 1760.29 s [foldl] Using install prefix: /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18
  127. 1760.29 s [foldl] Executables installed in:
  128. 1760.29 s [foldl] /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18/bin
  129. 1760.29 s [foldl] Libraries installed in:
  130. 1760.29 s [foldl] /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/foldl-1.4.18-JUvpw4UKAdU3SFdPE11NgQ
  131. 1760.29 s [foldl] Dynamic Libraries installed in:
  132. 1760.29 s [foldl] /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a
  133. 1760.29 s [foldl] Private executables installed in:
  134. 1760.29 s [foldl] /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18/libexec/x86_64-linux-ghc-9.10.2-1e2a/foldl-1.4.18
  135. 1760.29 s [foldl] Data files installed in:
  136. 1760.29 s [foldl] /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18/share/x86_64-linux-ghc-9.10.2-1e2a/foldl-1.4.18
  137. 1760.29 s [foldl] Documentation installed in:
  138. 1760.29 s [foldl] /nix/store/iisnfilyadwix3fcs6ikxfks5n6z5rx8-foldl-1.4.18-doc/share/doc/foldl-1.4.18
  139. 1760.29 s [foldl] Configuration files installed in:
  140. 1760.29 s [foldl] /nix/store/anfx25rsfkfn3k6qqcjqhg5hmb19wxd2-foldl-1.4.18/etc
  141. 1760.29 s [foldl] No alex found
  142. 1760.29 s [foldl] Using ar found on system at:
  143. 1760.29 s [foldl] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  144. 1760.29 s [foldl] No c2hs found
  145. 1760.29 s [foldl] No cpphs found
  146. 1760.29 s [foldl] Using doctest version 0.24.2 found on system at:
  147. 1760.29 s [foldl] /nix/store/w4c6k3rjbq8l9fs8mar852gz7a6kaif7-doctest-0.24.2/bin/doctest
  148. 1760.29 s [foldl] Using gcc version 14.3.0 given by user at:
  149. 1760.29 s [foldl] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  150. 1760.29 s [foldl] Using ghc version 9.10.2 found on system at:
  151. 1760.29 s [foldl] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/ghc
  152. 1760.29 s [foldl] Using ghc-pkg version 9.10.2 found on system at:
  153. 1760.29 s [foldl] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/ghc-pkg-9.10.2
  154. 1760.29 s [foldl] No ghcjs found
  155. 1760.30 s [foldl] No ghcjs-pkg found
  156. 1760.30 s [foldl] No greencard found
  157. 1760.30 s [foldl] Using haddock version 2.31.0 found on system at:
  158. 1760.30 s [foldl] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/haddock-ghc-9.10.2
  159. 1760.30 s [foldl] No happy found
  160. 1760.30 s [foldl] Using haskell-suite found on system at: haskell-suite-dummy-location
  161. 1760.30 s [foldl] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  162. 1760.30 s [foldl] No hmake found
  163. 1760.30 s [foldl] Using hpc version 0.69 found on system at:
  164. 1760.30 s [foldl] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/hpc-ghc-9.10.2
  165. 1760.30 s [foldl] Using hsc2hs version 0.68.10 found on system at:
  166. 1760.30 s [foldl] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/hsc2hs-ghc-9.10.2
  167. 1760.30 s [foldl] Using hscolour version 1.25 found on system at:
  168. 1760.30 s [foldl] /nix/store/kb4afndnwdxxc5ps9k8xv0jzd0a9y8n5-hscolour-1.25/bin/HsColour
  169. 1760.30 s [foldl] No jhc found
  170. 1760.30 s [foldl] Using ld found on system at:
  171. 1760.30 s [foldl] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  172. 1760.30 s [foldl] No pkg-config found
  173. 1760.30 s [foldl] Using runghc version 9.10.2 found on system at:
  174. 1760.30 s [free] Control.Alternative.Free=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Alternative.Free,Control.Alternative.Free.Final=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Alternative.Free.Final,Control.Applicative.Free=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Applicative.Free,Control.Applicative.Free.Fast=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Applicative.Free.Fast,Control.Applicative.Free.Final=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Applicative.Free.Final,Control.Applicative.Trans.Free=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Applicative.Trans.Free,Control.Comonad.Cofree=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Comonad.Cofree,Control.Comonad.Cofree.Class=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Comonad.Cofree.Class,Control.Comonad.Trans.Cofree=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Comonad.Trans.Cofree,Control.Comonad.Trans.Coiter=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Comonad.Trans.Coiter,Control.Monad.Free=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Free,Control.Monad.Free.Ap=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Free.Ap,Control.Monad.Free.Church=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Free.Church,Control.Monad.Free.Class=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Free.Class,Control.Monad.Free.TH=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Free.TH,Control.Monad.Trans.Free=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Trans.Free,Control.Monad.Trans.Free.Ap=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Trans.Free.Ap,Control.Monad.Trans.Free.Church=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Trans.Free.Church,Control.Monad.Trans.Iter=free-5.2-KsWRdGz0nOlHHyGfxH7UKC:Control.Monad.Trans.Iter
  175. 1760.30 s [free] Ready component graph:
  176. 1760.30 s [free] definite free-5.2-KsWRdGz0nOlHHyGfxH7UKC
  177. 1760.30 s [free] depends base-4.20.1.0-2277
  178. 1760.30 s [free] depends comonad-5.0.9-9ZXCMzc1LIuHPeefBB1gBv
  179. 1760.30 s [free] depends containers-0.7-dff9
  180. 1760.30 s [free] depends distributive-0.6.2.1-1Pd6CkjSsIyAeIyjb5zjXL
  181. 1760.30 s [free] depends exceptions-0.10.9-fd91
  182. 1760.30 s [free] depends indexed-traversable-0.1.4-74FxSl6JxXd9ksr8o5hwQ8
  183. 1760.30 s [free] depends mtl-2.3.1-5ae5
  184. 1760.30 s [free] depends profunctors-5.6.3-AfxdEbA4qEx21xJFq5OvWx
  185. 1760.30 s [free] depends semigroupoids-6.0.1-9FoUHGd3cSv9csmslt6yTE
  186. 1760.30 s [free] depends template-haskell-2.22.0.0-2a41
  187. 1760.30 s [free] depends th-abstraction-0.7.1.0-Dyx1wuxi5ORFRtryF4fJsV
  188. 1760.30 s [free] depends transformers-0.6.1.1-407f
  189. 1760.30 s [free] depends transformers-base-0.4.6-QKhp5qdg4W9qsq3jcnNhh
  190. 1760.30 s [free] Using Cabal-3.12.1.0 compiled by ghc-9.10
  191. 1760.30 s [free] Using compiler: ghc-9.10.2
  192. 1760.30 s [free] Using install prefix: /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2
  193. 1760.30 s [free] Executables installed in:
  194. 1760.30 s [free] /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/bin
  195. 1760.30 s [free] Libraries installed in:
  196. 1760.30 s [free] /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/free-5.2-KsWRdGz0nOlHHyGfxH7UKC
  197. 1760.30 s [free] Dynamic Libraries installed in:
  198. 1760.30 s [free] /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a
  199. 1760.30 s [free] Private executables installed in:
  200. 1760.30 s [free] /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/libexec/x86_64-linux-ghc-9.10.2-1e2a/free-5.2
  201. 1760.30 s [free] Data files installed in:
  202. 1760.30 s [free] /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/share/x86_64-linux-ghc-9.10.2-1e2a/free-5.2
  203. 1760.30 s [free] Documentation installed in:
  204. 1760.30 s [free] /nix/store/gr5bkd3gksj03mjxjf2d4fz0kz8xnj7k-free-5.2-doc/share/doc/free-5.2
  205. 1760.30 s [free] Configuration files installed in:
  206. 1760.30 s [free] /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/etc
  207. 1760.30 s [free] No alex found
  208. 1760.30 s [free] Using ar found on system at:
  209. 1760.30 s [free] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  210. 1760.30 s [free] No c2hs found
  211. 1760.30 s [free] No cpphs found
  212. 1760.30 s [free] No doctest found
  213. 1760.30 s [free] Using gcc version 14.3.0 given by user at:
  214. 1760.30 s [free] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  215. 1760.30 s [free] Using ghc version 9.10.2 found on system at:
  216. 1760.30 s [free] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/ghc
  217. 1760.30 s [free] Using ghc-pkg version 9.10.2 found on system at:
  218. 1760.30 s [free] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/ghc-pkg-9.10.2
  219. 1760.30 s [free] No ghcjs found
  220. 1760.30 s [free] No ghcjs-pkg found
  221. 1760.30 s [free] No greencard found
  222. 1760.30 s [free] Using haddock version 2.31.0 found on system at:
  223. 1760.30 s [free] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/haddock-ghc-9.10.2
  224. 1760.30 s [free] No happy found
  225. 1760.30 s [free] Using haskell-suite found on system at: haskell-suite-dummy-location
  226. 1760.30 s [free] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  227. 1760.30 s [free] No hmake found
  228. 1760.30 s [free] Using hpc version 0.69 found on system at:
  229. 1760.30 s [free] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/hpc-ghc-9.10.2
  230. 1760.30 s [free] Using hsc2hs version 0.68.10 found on system at:
  231. 1760.30 s [free] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/hsc2hs-ghc-9.10.2
  232. 1760.30 s [free] Using hscolour version 1.25 found on system at:
  233. 1760.30 s [reducers] Data.Generator=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Generator,Data.Generator.Combinators=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Generator.Combinators,Data.Semigroup.Alt=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Alt,Data.Semigroup.Alternative=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Alternative,Data.Semigroup.Applicative=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Applicative,Data.Semigroup.Apply=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Apply,Data.Semigroup.Generator=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Generator,Data.Semigroup.Instances=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Instances,Data.Semigroup.Monad=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Monad,Data.Semigroup.MonadPlus=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.MonadPlus,Data.Semigroup.Reducer=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Reducer,Data.Semigroup.Reducer.With=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Reducer.With,Data.Semigroup.Self=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Self,Data.Semigroup.Union=reducers-3.12.5-E5FWFKONWwPDm014iaH4sB:Data.Semigroup.Union
  234. 1760.30 s [reducers] Ready component graph:
  235. 1760.30 s [reducers] definite reducers-3.12.5-E5FWFKONWwPDm014iaH4sB
  236. 1760.30 s [reducers] depends array-0.5.8.0-e5b8
  237. 1760.30 s [reducers] depends base-4.20.1.0-2277
  238. 1760.30 s [reducers] depends bytestring-0.12.2.0-5835
  239. 1760.30 s [reducers] depends containers-0.7-dff9
  240. 1760.30 s [reducers] depends fingertree-0.1.6.2-KBlXGWAyfjh3MhSlqkE4aQ
  241. 1760.30 s [reducers] depends hashable-1.5.0.0-JQMp8nD7eXDLx6QkBmTwVb
  242. 1760.30 s [reducers] depends semigroupoids-6.0.1-9FoUHGd3cSv9csmslt6yTE
  243. 1760.30 s [reducers] depends text-2.1.2-9845
  244. 1760.30 s [reducers] depends transformers-0.6.1.1-407f
  245. 1760.30 s [reducers] depends unordered-containers-0.2.20.1-191HHq0EiVBAwoS0jzVXN0
  246. 1760.30 s [reducers] Using Cabal-3.12.1.0 compiled by ghc-9.10
  247. 1760.30 s [reducers] Using compiler: ghc-9.10.2
  248. 1760.30 s [reducers] Using install prefix:
  249. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5
  250. 1760.30 s [reducers] Executables installed in:
  251. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/bin
  252. 1760.30 s [reducers] Libraries installed in:
  253. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/reducers-3.12.5-E5FWFKONWwPDm014iaH4sB
  254. 1760.30 s [reducers] Dynamic Libraries installed in:
  255. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a
  256. 1760.30 s [reducers] Private executables installed in:
  257. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/libexec/x86_64-linux-ghc-9.10.2-1e2a/reducers-3.12.5
  258. 1760.30 s [reducers] Data files installed in:
  259. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/share/x86_64-linux-ghc-9.10.2-1e2a/reducers-3.12.5
  260. 1760.30 s [reducers] Documentation installed in:
  261. 1760.30 s [reducers] /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc/share/doc/reducers-3.12.5
  262. 1760.30 s [reducers] Configuration files installed in:
  263. 1760.30 s [reducers] /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/etc
  264. 1760.30 s [reducers] No alex found
  265. 1760.30 s [reducers] Using ar found on system at:
  266. 1760.30 s [reducers] /nix/store/rinxh4y0akcin90l05j0zr1r3wahl34d-binutils-wrapper-2.44/bin/ar
  267. 1760.30 s [reducers] No c2hs found
  268. 1760.30 s [reducers] No cpphs found
  269. 1760.30 s [reducers] No doctest found
  270. 1760.30 s [reducers] Using gcc version 14.3.0 given by user at:
  271. 1760.30 s [reducers] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/gcc
  272. 1760.30 s [reducers] Using ghc version 9.10.2 found on system at:
  273. 1760.30 s [reducers] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/ghc
  274. 1760.30 s [reducers] Using ghc-pkg version 9.10.2 found on system at:
  275. 1760.30 s [reducers] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/ghc-pkg-9.10.2
  276. 1760.30 s [reducers] No ghcjs found
  277. 1760.30 s [reducers] No ghcjs-pkg found
  278. 1760.30 s [reducers] No greencard found
  279. 1760.30 s [reducers] Using haddock version 2.31.0 found on system at:
  280. 1760.30 s [reducers] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/haddock-ghc-9.10.2
  281. 1760.30 s [reducers] No happy found
  282. 1760.30 s [reducers] Using haskell-suite found on system at: haskell-suite-dummy-location
  283. 1760.30 s [reducers] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  284. 1760.30 s [reducers] No hmake found
  285. 1760.30 s [reducers] Using hpc version 0.69 found on system at:
  286. 1760.30 s [reducers] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/hpc-ghc-9.10.2
  287. 1760.30 s [reducers] Using hsc2hs version 0.68.10 found on system at:
  288. 1760.30 s [reducers] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/hsc2hs-ghc-9.10.2
  289. 1760.30 s [reducers] Using hscolour version 1.25 found on system at:
  290. 1760.30 s [reducers] /nix/store/kb4afndnwdxxc5ps9k8xv0jzd0a9y8n5-hscolour-1.25/bin/HsColour
  291. 1760.30 s [reducers] No jhc found
  292. 1760.30 s [reducers] Using ld found on system at:
  293. 1760.30 s [reducers] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  294. 1760.30 s [reducers] No pkg-config found
  295. 1760.30 s [reducers] Using runghc version 9.10.2 found on system at:
  296. 1760.30 s [reducers] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/runghc-9.10.2
  297. 1760.30 s [reducers] Using strip version 2.44 found on system at:
  298. 1760.30 s [reducers] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  299. 1760.30 s [reducers] Using tar found on system at:
  300. 1760.30 s [reducers] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  301. 1760.30 s [reducers] No uhc found
  302. 1760.30 s [reducers] Phase: buildPhase
  303. 1760.30 s [reducers] Preprocessing library for reducers-3.12.5...
  304. 1760.30 s [reducers] Building library for reducers-3.12.5...
  305. 1760.30 s [reducers] [ 1 of 14] Compiling Data.Semigroup.Instances ( src/Data/Semigroup/Instances.hs, dist/build/Data/Semigroup/Instances.o, dist/build/Data/Semigroup/Instances.dyn_o )
  306. 1760.30 s [reducers] [ 2 of 14] Compiling Data.Semigroup.Reducer ( src/Data/Semigroup/Reducer.hs, dist/build/Data/Semigroup/Reducer.o, dist/build/Data/Semigroup/Reducer.dyn_o )
  307. 1760.30 s [base64] Phase: fixupPhase
  308. 1760.30 s [base64] shrinking RPATHs of ELF executables and libraries in /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0
  309. 1760.30 s [base64] shrinking /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSbase64-1.0-BCokxaE41KZG6AZpb55Ma6-ghc9.10.2.so
  310. 1760.30 s [base64] checking for references to /build/ in /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0...
  311. 1760.30 s [base64] patching script interpreter paths in /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0
  312. 1760.30 s [base64] stripping (with command strip and flags -S -p) in /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0/lib
  313. 1760.30 s [base64] shrinking RPATHs of ELF executables and libraries in /nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc
  314. 1760.30 s [base64] checking for references to /build/ in /nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc...
  315. 1760.30 s [base64] patching script interpreter paths in /nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc
  316. 1760.30 s [either] Running 1 test suites...
  317. 1760.30 s [either] Test suite tests: RUNNING...
  318. 1760.30 s [either] either
  319. 1760.30 s [either] identity: OK
  320. 1760.30 s [either] +++ OK, passed 100 tests.
  321. 1760.30 s [either] associativity: OK
  322. 1760.30 s [either] +++ OK, passed 100 tests.
  323. 1760.30 s [either]
  324. 1760.30 s [either] All 2 tests passed (0.01s)
  325. 1760.30 s [either] Test suite tests: PASS
  326. 1760.30 s [either] Test suite logged to: dist/test/either-5.0.3-tests.log
  327. 1760.30 s [either] 1 of 1 test suites (1 of 1 test cases) passed.
  328. 1760.30 s [either] Phase: haddockPhase
  329. 1760.30 s [either] Preprocessing library for either-5.0.3...
  330. 1760.30 s [either] Running Haddock on library for either-5.0.3...
  331. 1760.30 s [either] [1 of 2] Compiling Data.Either.Combinators ( src/Data/Either/Combinators.hs, nothing )
  332. 1760.30 s [either] [2 of 2] Compiling Data.Either.Validation ( src/Data/Either/Validation.hs, nothing )
  333. 1760.30 s [either] Haddock coverage:
  334. 1760.30 s [either] Warning: 'forM_' is out of scope.
  335. 1760.30 s [either] If you qualify the identifier, haddock can try to link it anyway.
  336. 1760.30 s [either] 100% ( 20 / 20) in 'Data.Either.Combinators'
  337. 1760.30 s [either] 27% ( 3 / 11) in 'Data.Either.Validation'
  338. 1760.30 s [either] Missing documentation for:
  339. 1760.30 s [either] _Success (src/Data/Either/Validation.hs:125)
  340. 1760.30 s [either] _Failure (src/Data/Either/Validation.hs:116)
  341. 1760.30 s [either] eitherToValidation (src/Data/Either/Validation.hs:146)
  342. 1760.30 s [either] validationToEither (src/Data/Either/Validation.hs:140)
  343. 1760.30 s [either] vap (src/Data/Either/Validation.hs:157)
  344. 1760.30 s [either] ealt (src/Data/Either/Validation.hs:182)
  345. 1760.30 s [either] vapm (src/Data/Either/Validation.hs:174)
  346. 1760.30 s [either] apm (src/Data/Either/Validation.hs:165)
  347. 1760.30 s [extra] \nil cons xs -> maybe nil (uncurry cons) (uncons xs) == list nil cons xs
  348. 1760.30 s [extra] +++ OK, passed 100 tests.
  349. 1760.30 s [extra] unsnoc "test" == Just ("tes",'t')
  350. 1760.30 s [extra] +++ OK, passed 100 tests.
  351. 1760.30 s [extra] unsnoc "" == Nothing
  352. 1760.30 s [extra] +++ OK, passed 100 tests.
  353. 1760.30 s [extra] \xs -> unsnoc xs == if null xs then Nothing else Just (init xs, last xs)
  354. 1760.30 s [extra] +++ OK, passed 100 tests.
  355. 1760.30 s [extra] cons 't' "est" == "test"
  356. 1760.30 s [extra] +++ OK, passed 100 tests.
  357. 1760.30 s [extra] \x xs -> uncons (cons x xs) == Just (x,xs)
  358. 1760.30 s [extra] +++ OK, passed 100 tests.
  359. 1760.30 s [extra] snoc "tes" 't' == "test"
  360. 1760.30 s [extra] +++ OK, passed 100 tests.
  361. 1760.30 s [extra] \xs x -> unsnoc (snoc xs x) == Just (xs,x)
  362. 1760.30 s [extra] +++ OK, passed 100 tests.
  363. 1760.30 s [extra] enumerate == [False, True]
  364. 1760.30 s [extra] +++ OK, passed 100 tests.
  365. 1760.30 s [extra] takeEnd 3 "hello" == "llo"
  366. 1760.30 s [extra] +++ OK, passed 100 tests.
  367. 1760.30 s [extra] takeEnd 5 "bye" == "bye"
  368. 1760.30 s [extra] +++ OK, passed 100 tests.
  369. 1760.30 s [extra] takeEnd (-1) "bye" == ""
  370. 1760.30 s [extra] +++ OK, passed 100 tests.
  371. 1760.30 s [extra] \i xs -> takeEnd i xs `isSuffixOf` xs
  372. 1760.30 s [extra] +++ OK, passed 100 tests.
  373. 1760.30 s [extra] \i xs -> length (takeEnd i xs) == min (max 0 i) (length xs)
  374. 1760.30 s [extra] +++ OK, passed 100 tests.
  375. 1760.30 s [extra] dropEnd 3 "hello" == "he"
  376. 1760.30 s [extra] +++ OK, passed 100 tests.
  377. 1760.30 s [extra] dropEnd 5 "bye" == ""
  378. 1760.30 s [extra] +++ OK, passed 100 tests.
  379. 1760.30 s [extra] dropEnd (-1) "bye" == "bye"
  380. 1760.30 s [extra] +++ OK, passed 100 tests.
  381. 1760.30 s [extra] \i xs -> dropEnd i xs `isPrefixOf` xs
  382. 1760.30 s [extra] +++ OK, passed 100 tests.
  383. 1760.30 s [extra] \i xs -> length (dropEnd i xs) == max 0 (length xs - max 0 i)
  384. 1760.30 s [extra] +++ OK, passed 100 tests.
  385. 1760.30 s [extra] \i -> take 3 (dropEnd 5 [i..]) == take 3 [i..]
  386. 1760.30 s [extra] +++ OK, passed 100 tests.
  387. 1760.30 s [extra] splitAtEnd 3 "hello" == ("he","llo")
  388. 1760.30 s [extra] +++ OK, passed 100 tests.
  389. 1760.30 s [extra] splitAtEnd 3 "he" == ("", "he")
  390. 1760.30 s [extra] +++ OK, passed 100 tests.
  391. 1760.30 s [extra] \i xs -> uncurry (++) (splitAt i xs) == xs
  392. 1760.30 s [extra] +++ OK, passed 100 tests.
  393. 1760.30 s [extra] \i xs -> splitAtEnd i xs == (dropEnd i xs, takeEnd i xs)
  394. 1760.30 s [extra] +++ OK, passed 100 tests.
  395. 1760.30 s [extra] \i xs -> zip [i..] xs == zipFrom i xs
  396. 1760.30 s [extra] +++ OK, passed 100 tests.
  397. 1760.30 s [extra] zipFrom False [1..3] == [(False,1),(True, 2)]
  398. 1760.30 s [extra] +++ OK, passed 100 tests.
  399. 1760.30 s [extra] \i xs -> zipWithFrom (,) i xs == zipFrom i xs
  400. 1760.30 s [extra] +++ OK, passed 100 tests.
  401. 1760.30 s [extra] concatUnzip [("a","AB"),("bc","C")] == ("abc","ABC")
  402. 1760.30 s [extra] +++ OK, passed 100 tests.
  403. 1760.30 s [extra] concatUnzip3 [("a","AB",""),("bc","C","123")] == ("abc","ABC","123")
  404. 1760.30 s [extra] +++ OK, passed 100 tests.
  405. 1760.30 s [extra] takeWhileEnd even [2,3,4,6] == [4,6]
  406. 1760.30 s [extra] +++ OK, passed 100 tests.
  407. 1760.30 s [extra] trim " hello " == "hello"
  408. 1760.30 s [extra] +++ OK, passed 100 tests.
  409. 1760.30 s [extra] trimStart " hello " == "hello "
  410. 1760.30 s [extra] +++ OK, passed 100 tests.
  411. 1760.30 s [extra] trimEnd " hello " == " hello"
  412. 1760.30 s [extra] +++ OK, passed 100 tests.
  413. 1760.30 s [extra] \s -> trim s == trimEnd (trimStart s)
  414. 1760.30 s [extra] +++ OK, passed 100 tests.
  415. 1760.30 s [extra] lower "This is A TEST" == "this is a test"
  416. 1760.30 s [extra] +++ OK, passed 100 tests.
  417. 1760.30 s [extra] lower "" == ""
  418. 1760.30 s [extra] +++ OK, passed 100 tests.
  419. 1760.30 s [extra] upper "This is A TEST" == "THIS IS A TEST"
  420. 1760.30 s [extra] +++ OK, passed 100 tests.
  421. 1760.30 s [extra] upper "" == ""
  422. 1760.30 s [extra] +++ OK, passed 100 tests.
  423. 1760.30 s [extra] word1 "" == ("", "")
  424. 1760.30 s [extra] +++ OK, passed 100 tests.
  425. 1760.30 s [extra] word1 "keyword rest of string" == ("keyword","rest of string")
  426. 1760.30 s [extra] +++ OK, passed 100 tests.
  427. 1760.30 s [extra] word1 " keyword\n rest of string" == ("keyword","rest of string")
  428. 1760.30 s [extra] +++ OK, passed 100 tests.
  429. 1760.30 s [extra] \s -> fst (word1 s) == concat (take 1 $ words s)
  430. 1760.30 s [extra] +++ OK, passed 100 tests.
  431. 1760.30 s [extra] \s -> words (snd $ word1 s) == drop 1 (words s)
  432. 1760.30 s [extra] +++ OK, passed 100 tests.
  433. 1760.30 s [extra] line1 "" == ("", "")
  434. 1760.30 s [extra] +++ OK, passed 100 tests.
  435. 1760.30 s [extra] line1 "test" == ("test","")
  436. 1760.30 s [extra] +++ OK, passed 100 tests.
  437. 1760.30 s [extra] line1 "test\n" == ("test","")
  438. 1760.30 s [extra] +++ OK, passed 100 tests.
  439. 1760.30 s [extra] line1 "test\nrest" == ("test","rest")
  440. 1760.31 s [extra] +++ OK, passed 100 tests.
  441. 1760.31 s [extra] line1 "test\nrest\nmore" == ("test","rest\nmore")
  442. 1760.31 s [extra] +++ OK, passed 100 tests.
  443. 1760.31 s [extra] escapeHTML "this is a test" == "this is a test"
  444. 1760.31 s [extra] +++ OK, passed 100 tests.
  445. 1760.31 s [extra] escapeHTML "<b>\"g&t\"</n>" == "&lt;b&gt;&quot;g&amp;t&quot;&lt;/n&gt;"
  446. 1760.31 s [extra] +++ OK, passed 100 tests.
  447. 1760.31 s [extra] escapeHTML "t'was another test" == "t&#39;was another test"
  448. 1760.31 s [extra] +++ OK, passed 100 tests.
  449. 1760.31 s [extra] \xs -> unescapeHTML (escapeHTML xs) == xs
  450. 1760.31 s [extra] +++ OK, passed 100 tests.
  451. 1760.31 s [extra] escapeJSON "this is a test" == "this is a test"
  452. 1760.31 s [extra] +++ OK, passed 100 tests.
  453. 1760.31 s [extra] escapeJSON "\ttab\nnewline\\" == "\\ttab\\nnewline\\\\"
  454. 1760.31 s [extra] +++ OK, passed 100 tests.
  455. 1760.31 s [extra] escapeJSON "\ESC[0mHello" == "\\u001b[0mHello"
  456. 1760.31 s [extra] +++ OK, passed 100 tests.
  457. 1760.31 s [extra] \xs -> unescapeJSON (escapeJSON xs) == xs
  458. 1760.31 s [extra] +++ OK, passed 100 tests.
  459. 1760.31 s [extra] groupOn abs [1,-1,2] == [[1,-1], [2]]
  460. 1760.31 s [extra] +++ OK, passed 100 tests.
  461. 1760.31 s [extra] groupOnKey abs [1,-1,2] == [(1, [1,-1]), (2, [2])]
  462. 1760.31 s [extra] +++ OK, passed 100 tests.
  463. 1760.31 s [extra] maximumOn id [] == undefined
  464. 1760.31 s [extra] +++ OK, passed 100 tests.
  465. 1760.31 s [extra] maximumOn length ["test","extra","a"] == "extra"
  466. 1760.31 s [extra] +++ OK, passed 100 tests.
  467. 1760.31 s [extra] minimumOn id [] == undefined
  468. 1760.31 s [foldl] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/runghc-9.10.2
  469. 1760.31 s [foldl] Using strip version 2.44 found on system at:
  470. 1760.31 s [foldl] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  471. 1760.31 s [foldl] Using tar found on system at:
  472. 1760.31 s [foldl] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  473. 1760.31 s [foldl] No uhc found
  474. 1760.31 s [foldl] Phase: buildPhase
  475. 1760.31 s [foldl] Preprocessing library for foldl-1.4.18...
  476. 1760.31 s [foldl] Building library for foldl-1.4.18...
  477. 1760.31 s [foldl] [1 of 9] Compiling Control.Foldl.Internal ( src/Control/Foldl/Internal.hs, dist/build/Control/Foldl/Internal.o, dist/build/Control/Foldl/Internal.dyn_o )
  478. 1760.31 s [foldl] [2 of 9] Compiling Control.Foldl.Optics ( src/Control/Foldl/Optics.hs, dist/build/Control/Foldl/Optics.o, dist/build/Control/Foldl/Optics.dyn_o )
  479. 1760.31 s [foldl] [3 of 9] Compiling Control.Foldl.Util.MVector ( src/Control/Foldl/Util/MVector.hs, dist/build/Control/Foldl/Util/MVector.o, dist/build/Control/Foldl/Util/MVector.dyn_o )
  480. 1760.31 s [foldl] [4 of 9] Compiling Control.Foldl.Util.Vector ( src/Control/Foldl/Util/Vector.hs, dist/build/Control/Foldl/Util/Vector.o, dist/build/Control/Foldl/Util/Vector.dyn_o )
  481. 1760.31 s [foldl] [5 of 9] Compiling Control.Foldl ( src/Control/Foldl.hs, dist/build/Control/Foldl.o, dist/build/Control/Foldl.dyn_o )
  482. 1760.31 s [foldl] [6 of 9] Compiling Control.Foldl.Text ( src/Control/Foldl/Text.hs, dist/build/Control/Foldl/Text.o, dist/build/Control/Foldl/Text.dyn_o )
  483. 1760.31 s [foldl] [7 of 9] Compiling Control.Foldl.NonEmpty ( src/Control/Foldl/NonEmpty.hs, dist/build/Control/Foldl/NonEmpty.o, dist/build/Control/Foldl/NonEmpty.dyn_o )
  484. 1760.31 s [foldl] src/Control/Foldl/NonEmpty.hs:64:29: warning: [GHC-38856] [-Wunused-imports]
  485. 1760.31 s [foldl] The import of ‘liftA2’
  486. 1760.31 s [foldl] from module ‘Control.Applicative’ is redundant
  487. 1760.31 s [foldl] |
  488. 1760.31 s [foldl] 64 | import Control.Applicative (liftA2, Const(..))
  489. 1760.31 s [foldl] | ^^^^^^
  490. 1760.31 s [foldl]
  491. 1760.31 s [foldl] [8 of 9] Compiling Control.Foldl.ByteString ( src/Control/Foldl/ByteString.hs, dist/build/Control/Foldl/ByteString.o, dist/build/Control/Foldl/ByteString.dyn_o )
  492. 1760.31 s [foldl] [9 of 9] Compiling Control.Scanl ( src/Control/Scanl.hs, dist/build/Control/Scanl.o, dist/build/Control/Scanl.dyn_o )
  493. 1760.31 s [foldl] [1 of 9] Compiling Control.Foldl.Internal ( src/Control/Foldl/Internal.hs, dist/build/Control/Foldl/Internal.p_o )
  494. 1760.31 s [foldl] [2 of 9] Compiling Control.Foldl.Optics ( src/Control/Foldl/Optics.hs, dist/build/Control/Foldl/Optics.p_o )
  495. 1760.31 s [foldl] [3 of 9] Compiling Control.Foldl.Util.MVector ( src/Control/Foldl/Util/MVector.hs, dist/build/Control/Foldl/Util/MVector.p_o )
  496. 1760.31 s [foldl] [4 of 9] Compiling Control.Foldl.Util.Vector ( src/Control/Foldl/Util/Vector.hs, dist/build/Control/Foldl/Util/Vector.p_o )
  497. 1760.31 s [foldl] [5 of 9] Compiling Control.Foldl ( src/Control/Foldl.hs, dist/build/Control/Foldl.p_o )
  498. 1760.31 s [free] /nix/store/kb4afndnwdxxc5ps9k8xv0jzd0a9y8n5-hscolour-1.25/bin/HsColour
  499. 1760.31 s [free] No jhc found
  500. 1760.31 s [free] Using ld found on system at:
  501. 1760.31 s [free] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/ld
  502. 1760.31 s [free] No pkg-config found
  503. 1760.31 s [free] Using runghc version 9.10.2 found on system at:
  504. 1760.31 s [free] /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2/bin/runghc-9.10.2
  505. 1760.31 s [free] Using strip version 2.44 found on system at:
  506. 1760.31 s [free] /nix/store/0j1ajvl2qwwb9n5a91hzd0j98fk9fa3k-gcc-wrapper-14.3.0/bin/strip
  507. 1760.31 s [free] Using tar found on system at:
  508. 1760.31 s [free] /nix/store/i8hncwf8234flnbgi2z19bzy4hjwhss1-gnutar-1.35/bin/tar
  509. 1760.31 s [free] No uhc found
  510. 1760.31 s [free] Phase: buildPhase
  511. 1760.31 s [free] Preprocessing library for free-5.2...
  512. 1760.31 s [free] Building library for free-5.2...
  513. 1760.31 s [free] [ 1 of 19] Compiling Control.Alternative.Free ( src/Control/Alternative/Free.hs, dist/build/Control/Alternative/Free.o, dist/build/Control/Alternative/Free.dyn_o )
  514. 1760.31 s [free] [ 2 of 19] Compiling Control.Alternative.Free.Final ( src/Control/Alternative/Free/Final.hs, dist/build/Control/Alternative/Free/Final.o, dist/build/Control/Alternative/Free/Final.dyn_o )
  515. 1760.31 s [free] [ 3 of 19] Compiling Control.Applicative.Free ( src/Control/Applicative/Free.hs, dist/build/Control/Applicative/Free.o, dist/build/Control/Applicative/Free.dyn_o )
  516. 1760.31 s [free] [ 4 of 19] Compiling Control.Applicative.Free.Fast ( src/Control/Applicative/Free/Fast.hs, dist/build/Control/Applicative/Free/Fast.o, dist/build/Control/Applicative/Free/Fast.dyn_o )
  517. 1760.31 s [free] [ 5 of 19] Compiling Control.Applicative.Free.Final ( src/Control/Applicative/Free/Final.hs, dist/build/Control/Applicative/Free/Final.o, dist/build/Control/Applicative/Free/Final.dyn_o )
  518. 1760.31 s [free] [ 6 of 19] Compiling Control.Applicative.Trans.Free ( src/Control/Applicative/Trans/Free.hs, dist/build/Control/Applicative/Trans/Free.o, dist/build/Control/Applicative/Trans/Free.dyn_o )
  519. 1760.31 s [free] [ 7 of 19] Compiling Control.Comonad.Cofree.Class ( src/Control/Comonad/Cofree/Class.hs, dist/build/Control/Comonad/Cofree/Class.o, dist/build/Control/Comonad/Cofree/Class.dyn_o )
  520. 1760.31 s [free] [ 8 of 19] Compiling Control.Comonad.Cofree ( src/Control/Comonad/Cofree.hs, dist/build/Control/Comonad/Cofree.o, dist/build/Control/Comonad/Cofree.dyn_o )
  521. 1760.31 s [free] [ 9 of 19] Compiling Control.Comonad.Trans.Cofree ( src/Control/Comonad/Trans/Cofree.hs, dist/build/Control/Comonad/Trans/Cofree.o, dist/build/Control/Comonad/Trans/Cofree.dyn_o )
  522. 1760.31 s [free] [10 of 19] Compiling Control.Comonad.Trans.Coiter ( src/Control/Comonad/Trans/Coiter.hs, dist/build/Control/Comonad/Trans/Coiter.o, dist/build/Control/Comonad/Trans/Coiter.dyn_o )
  523. 1760.31 s [free] [11 of 19] Compiling Control.Monad.Free.Class ( src/Control/Monad/Free/Class.hs, dist/build/Control/Monad/Free/Class.o, dist/build/Control/Monad/Free/Class.dyn_o )
  524. 1760.31 s [free] [12 of 19] Compiling Control.Monad.Free.TH ( src/Control/Monad/Free/TH.hs, dist/build/Control/Monad/Free/TH.o, dist/build/Control/Monad/Free/TH.dyn_o )
  525. 1760.31 s [free] [13 of 19] Compiling Control.Monad.Trans.Free ( src/Control/Monad/Trans/Free.hs, dist/build/Control/Monad/Trans/Free.o, dist/build/Control/Monad/Trans/Free.dyn_o )
  526. 1760.31 s [free] [14 of 19] Compiling Control.Monad.Free ( src/Control/Monad/Free.hs, dist/build/Control/Monad/Free.o, dist/build/Control/Monad/Free.dyn_o )
  527. 1760.31 s [free] [15 of 19] Compiling Control.Monad.Free.Church ( src/Control/Monad/Free/Church.hs, dist/build/Control/Monad/Free/Church.o, dist/build/Control/Monad/Free/Church.dyn_o )
  528. 1760.31 s [free] [16 of 19] Compiling Control.Monad.Trans.Free.Ap ( src/Control/Monad/Trans/Free/Ap.hs, dist/build/Control/Monad/Trans/Free/Ap.o, dist/build/Control/Monad/Trans/Free/Ap.dyn_o )
  529. 1760.31 s [free] [17 of 19] Compiling Control.Monad.Free.Ap ( src/Control/Monad/Free/Ap.hs, dist/build/Control/Monad/Free/Ap.o, dist/build/Control/Monad/Free/Ap.dyn_o )
  530. 1760.31 s [free] [18 of 19] Compiling Control.Monad.Trans.Free.Church ( src/Control/Monad/Trans/Free/Church.hs, dist/build/Control/Monad/Trans/Free/Church.o, dist/build/Control/Monad/Trans/Free/Church.dyn_o )
  531. 1760.31 s [free] [19 of 19] Compiling Control.Monad.Trans.Iter ( src/Control/Monad/Trans/Iter.hs, dist/build/Control/Monad/Trans/Iter.o, dist/build/Control/Monad/Trans/Iter.dyn_o )
  532. 1760.31 s [free] [ 1 of 19] Compiling Control.Alternative.Free ( src/Control/Alternative/Free.hs, dist/build/Control/Alternative/Free.p_o )
  533. 1760.31 s [indexed-traversable-instances] Documentation created: dist/doc/html/indexed-traversable-instances/,
  534. 1760.31 s [indexed-traversable-instances] dist/doc/html/indexed-traversable-instances/indexed-traversable-instances.txt
  535. 1760.31 s [indexed-traversable-instances] Preprocessing test suite 'indexed-tests' for indexed-traversable-instances-0.1.2...
  536. 1760.31 s [indexed-traversable-instances] Preprocessing test suite 'safe' for indexed-traversable-instances-0.1.2...
  537. 1760.31 s [indexed-traversable-instances] Phase: installPhase
  538. 1760.31 s [indexed-traversable-instances] Installing library in /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/indexed-traversable-instances-0.1.2-B7AuvDwRzCx5391P5GRlX1
  539. 1760.31 s [indexed-traversable-instances] Phase: fixupPhase
  540. 1760.31 s [indexed-traversable-instances] shrinking RPATHs of ELF executables and libraries in /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2
  541. 1760.31 s [indexed-traversable-instances] shrinking /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSindexed-traversable-instances-0.1.2-B7AuvDwRzCx5391P5GRlX1-ghc9.10.2.so
  542. 1760.31 s [indexed-traversable-instances] checking for references to /build/ in /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2...
  543. 1760.31 s [indexed-traversable-instances] patching script interpreter paths in /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2
  544. 1760.31 s [indexed-traversable-instances] stripping (with command strip and flags -S -p) in /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2/lib
  545. 1760.31 s [monoid-subclasses] [11 of 16] Compiling Data.Monoid.Instances.Stateful ( src/Data/Monoid/Instances/Stateful.hs, dist/build/Data/Monoid/Instances/Stateful.o, dist/build/Data/Monoid/Instances/Stateful.dyn_o )
  546. 1760.31 s [monoid-subclasses] src/Data/Monoid/Instances/Stateful.hs:27:1: warning: [GHC-66111] [-Wunused-imports]
  547. 1760.31 s [monoid-subclasses] The import of ‘Data.Semigroup’ is redundant
  548. 1760.31 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup’
  549. 1760.31 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup()
  550. 1760.31 s [monoid-subclasses] |
  551. 1760.31 s [monoid-subclasses] 27 | import Data.Semigroup (Semigroup(..))
  552. 1760.31 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  553. 1760.31 s [monoid-subclasses]
  554. 1760.31 s [monoid-subclasses] src/Data/Monoid/Instances/Stateful.hs:28:1: warning: [GHC-66111] [-Wunused-imports]
  555. 1760.31 s [monoid-subclasses] The import of ‘Data.Monoid’ is redundant
  556. 1760.31 s [monoid-subclasses] except perhaps to import instances from ‘Data.Monoid’
  557. 1760.31 s [monoid-subclasses] To import instances alone, use: import Data.Monoid()
  558. 1760.31 s [monoid-subclasses] |
  559. 1760.31 s [monoid-subclasses] 28 | import Data.Monoid (Monoid(..))
  560. 1760.31 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  561. 1760.31 s [monoid-subclasses]
  562. 1760.31 s [monoid-subclasses] src/Data/Monoid/Instances/Stateful.hs:217:24: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  563. 1760.31 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  564. 1760.31 s [monoid-subclasses] In an irrefutable pattern: Patterns of type ‘[b]’ not matched: []
  565. 1760.31 s [monoid-subclasses] |
  566. 1760.31 s [monoid-subclasses] 217 | restore f ~(hd:tl) = restore (f . (Stateful (hd, mempty):)) tl
  567. 1760.31 s [monoid-subclasses] | ^^^^^^^
  568. 1760.31 s [monoid-subclasses]
  569. 1760.31 s [monoid-subclasses] [12 of 16] Compiling Data.Monoid.Instances.PrefixMemory ( src/Data/Monoid/Instances/PrefixMemory.hs, dist/build/Data/Monoid/Instances/PrefixMemory.o, dist/build/Data/Monoid/Instances/PrefixMemory.dyn_o )
  570. 1760.31 s [monoid-subclasses] src/Data/Monoid/Instances/PrefixMemory.hs:20:1: warning: [GHC-66111] [-Wunused-imports]
  571. 1760.31 s [monoid-subclasses] The import of ‘Data.Semigroup’ is redundant
  572. 1760.31 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup’
  573. 1760.31 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup()
  574. 1760.31 s [monoid-subclasses] |
  575. 1760.31 s [monoid-subclasses] 20 | import Data.Semigroup (Semigroup(..))
  576. 1760.31 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  577. 1760.31 s [monoid-subclasses]
  578. 1760.31 s [monoid-subclasses] src/Data/Monoid/Instances/PrefixMemory.hs:21:21: warning: [GHC-38856] [-Wunused-imports]
  579. 1760.31 s [monoid-subclasses] The import of ‘Monoid’ from module ‘Data.Monoid’ is redundant
  580. 1760.31 s [monoid-subclasses] |
  581. 1760.31 s [monoid-subclasses] 21 | import Data.Monoid (Monoid(..), Endo(..))
  582. 1760.31 s [monoid-subclasses] | ^^^^^^^^^^
  583. 1760.31 s [monoid-subclasses]
  584. 1760.31 s [monoid-subclasses] src/Data/Monoid/Instances/PrefixMemory.hs:106:40: warning: [GHC-63394] [-Wx-partial]
  585. 1760.31 s [monoid-subclasses] In the use of ‘tail’
  586. 1760.31 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  587. 1760.31 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  588. 1760.31 s [monoid-subclasses] |
  589. 1760.31 s [monoid-subclasses] 106 | factors (Shadowed p c) = rewrap <$> List.tail (inits c)
  590. 1760.31 s [monoid-subclasses] | ^^^^^^^^^
  591. 1760.31 s [monoid-subclasses]
  592. 1760.31 s [monoid-subclasses] [13 of 16] Compiling Data.Monoid.Instances.Positioned ( src/Data/Monoid/Instances/Positioned.hs, dist/build/Data/Monoid/Instances/Positioned.o, dist/build/Data/Monoid/Instances/Positioned.dyn_o )
  593. 1760.31 s [parsers] [2 of 2] Linking dist/build/quickcheck/quickcheck
  594. 1760.31 s [parsers] Phase: checkPhase
  595. 1760.31 s [parsers] Running 1 test suites...
  596. 1760.31 s [parsers] Test suite quickcheck: RUNNING...
  597. 1760.31 s [parsers] +++ OK, passed 100 tests.
  598. 1760.31 s [parsers] +++ OK, passed 100 tests.
  599. 1760.31 s [parsers] +++ OK, passed 100 tests.
  600. 1760.31 s [parsers] +++ OK, passed 100 tests.
  601. 1760.31 s [parsers] Test suite quickcheck: PASS
  602. 1760.31 s [parsers] Test suite logged to: dist/test/parsers-0.12.12-quickcheck.log
  603. 1760.31 s [parsers] 1 of 1 test suites (1 of 1 test cases) passed.
  604. 1760.31 s [parsers] Phase: haddockPhase
  605. 1760.31 s [parsers] Preprocessing library for parsers-0.12.12...
  606. 1760.31 s [parsers] Running Haddock on library for parsers-0.12.12...
  607. 1760.31 s [parsers] Warning: The documentation for the following packages are not installed. No
  608. 1760.31 s [parsers] links will be generated to these packages: attoparsec-0.14.4,
  609. 1760.31 s [parsers] attoparsec-0.14.4
  610. 1760.31 s [parsers] [1 of 8] Compiling Text.Parser.Combinators ( src/Text/Parser/Combinators.hs, nothing )
  611. 1760.31 s [parsers] [2 of 8] Compiling Text.Parser.Char ( src/Text/Parser/Char.hs, nothing )
  612. 1760.31 s [parsers] [3 of 8] Compiling Text.Parser.Expression ( src/Text/Parser/Expression.hs, nothing )
  613. 1760.31 s [parsers] [4 of 8] Compiling Text.Parser.LookAhead ( src/Text/Parser/LookAhead.hs, nothing )
  614. 1760.31 s [parsers] [5 of 8] Compiling Text.Parser.Permutation ( src/Text/Parser/Permutation.hs, nothing )
  615. 1760.31 s [parsers] [6 of 8] Compiling Text.Parser.Token.Highlight ( src/Text/Parser/Token/Highlight.hs, nothing )
  616. 1760.31 s [parsers] [7 of 8] Compiling Text.Parser.Token ( src/Text/Parser/Token.hs, nothing )
  617. 1760.31 s [reducers] [ 3 of 14] Compiling Data.Semigroup.MonadPlus ( src/Data/Semigroup/MonadPlus.hs, dist/build/Data/Semigroup/MonadPlus.o, dist/build/Data/Semigroup/MonadPlus.dyn_o )
  618. 1760.31 s [reducers] [ 4 of 14] Compiling Data.Semigroup.Monad ( src/Data/Semigroup/Monad.hs, dist/build/Data/Semigroup/Monad.o, dist/build/Data/Semigroup/Monad.dyn_o )
  619. 1760.31 s [reducers] [ 5 of 14] Compiling Data.Semigroup.Apply ( src/Data/Semigroup/Apply.hs, dist/build/Data/Semigroup/Apply.o, dist/build/Data/Semigroup/Apply.dyn_o )
  620. 1760.31 s [reducers] [ 6 of 14] Compiling Data.Semigroup.Applicative ( src/Data/Semigroup/Applicative.hs, dist/build/Data/Semigroup/Applicative.o, dist/build/Data/Semigroup/Applicative.dyn_o )
  621. 1760.31 s [reducers] [ 7 of 14] Compiling Data.Semigroup.Alternative ( src/Data/Semigroup/Alternative.hs, dist/build/Data/Semigroup/Alternative.o, dist/build/Data/Semigroup/Alternative.dyn_o )
  622. 1760.31 s [reducers] [ 8 of 14] Compiling Data.Semigroup.Alt ( src/Data/Semigroup/Alt.hs, dist/build/Data/Semigroup/Alt.o, dist/build/Data/Semigroup/Alt.dyn_o )
  623. 1760.31 s [reducers] [ 9 of 14] Compiling Data.Generator ( src/Data/Generator.hs, dist/build/Data/Generator.o, dist/build/Data/Generator.dyn_o )
  624. 1760.31 s [reducers] [10 of 14] Compiling Data.Semigroup.Generator ( src/Data/Semigroup/Generator.hs, dist/build/Data/Semigroup/Generator.o, dist/build/Data/Semigroup/Generator.dyn_o )
  625. 1760.31 s [reducers] [11 of 14] Compiling Data.Generator.Combinators ( src/Data/Generator/Combinators.hs, dist/build/Data/Generator/Combinators.o, dist/build/Data/Generator/Combinators.dyn_o )
  626. 1760.31 s [reducers] [12 of 14] Compiling Data.Semigroup.Reducer.With ( src/Data/Semigroup/Reducer/With.hs, dist/build/Data/Semigroup/Reducer/With.o, dist/build/Data/Semigroup/Reducer/With.dyn_o )
  627. 1760.31 s [reducers] [13 of 14] Compiling Data.Semigroup.Self ( src/Data/Semigroup/Self.hs, dist/build/Data/Semigroup/Self.o, dist/build/Data/Semigroup/Self.dyn_o )
  628. 1760.31 s [reducers] [14 of 14] Compiling Data.Semigroup.Union ( src/Data/Semigroup/Union.hs, dist/build/Data/Semigroup/Union.o, dist/build/Data/Semigroup/Union.dyn_o )
  629. 1760.31 s [reducers] [ 1 of 14] Compiling Data.Semigroup.Instances ( src/Data/Semigroup/Instances.hs, dist/build/Data/Semigroup/Instances.p_o )
  630. 1760.31 s [reducers] [ 2 of 14] Compiling Data.Semigroup.Reducer ( src/Data/Semigroup/Reducer.hs, dist/build/Data/Semigroup/Reducer.p_o )
  631. 1760.31 s [reducers] [ 3 of 14] Compiling Data.Semigroup.MonadPlus ( src/Data/Semigroup/MonadPlus.hs, dist/build/Data/Semigroup/MonadPlus.p_o )
  632. 1760.31 s [reducers] [ 4 of 14] Compiling Data.Semigroup.Monad ( src/Data/Semigroup/Monad.hs, dist/build/Data/Semigroup/Monad.p_o )
  633. 1760.31 s [reducers] [ 5 of 14] Compiling Data.Semigroup.Apply ( src/Data/Semigroup/Apply.hs, dist/build/Data/Semigroup/Apply.p_o )
  634. 1760.31 s [reducers] [ 6 of 14] Compiling Data.Semigroup.Applicative ( src/Data/Semigroup/Applicative.hs, dist/build/Data/Semigroup/Applicative.p_o )
  635. 1760.31 s [reducers] [ 7 of 14] Compiling Data.Semigroup.Alternative ( src/Data/Semigroup/Alternative.hs, dist/build/Data/Semigroup/Alternative.p_o )
  636. 1760.31 s [reducers] [ 8 of 14] Compiling Data.Semigroup.Alt ( src/Data/Semigroup/Alt.hs, dist/build/Data/Semigroup/Alt.p_o )
  637. 1760.31 s [reducers] [ 9 of 14] Compiling Data.Generator ( src/Data/Generator.hs, dist/build/Data/Generator.p_o )
  638. 1760.31 s [reducers] [10 of 14] Compiling Data.Semigroup.Generator ( src/Data/Semigroup/Generator.hs, dist/build/Data/Semigroup/Generator.p_o )
  639. 1760.31 s [reducers] [11 of 14] Compiling Data.Generator.Combinators ( src/Data/Generator/Combinators.hs, dist/build/Data/Generator/Combinators.p_o )
  640. 1760.31 s [reducers] [12 of 14] Compiling Data.Semigroup.Reducer.With ( src/Data/Semigroup/Reducer/With.hs, dist/build/Data/Semigroup/Reducer/With.p_o )
  641. 1760.31 s [reducers] [13 of 14] Compiling Data.Semigroup.Self ( src/Data/Semigroup/Self.hs, dist/build/Data/Semigroup/Self.p_o )
  642. 1760.31 s [reducers] [14 of 14] Compiling Data.Semigroup.Union ( src/Data/Semigroup/Union.hs, dist/build/Data/Semigroup/Union.p_o )
  643. 1760.31 s [reducers] Phase: checkPhase
  644. 1760.31 s [reducers] Package has no test suites.
  645. 1760.31 s [reducers] Phase: haddockPhase
  646. 1760.31 s [reducers] Preprocessing library for reducers-3.12.5...
  647. 1760.31 s [reducers] Running Haddock on library for reducers-3.12.5...
  648. 1760.31 s [string-interpolate] [2 of 2] Compiling Paths_string_interpolate ( dist/build/string-interpolate-test/autogen/Paths_string_interpolate.hs, dist/build/string-interpolate-test/string-interpolate-test-tmp/Paths_string_interpolate.o )
  649. 1760.31 s [string-interpolate] [3 of 3] Linking dist/build/string-interpolate-test/string-interpolate-test
  650. 1760.31 s [string-interpolate] Phase: checkPhase
  651. 1760.31 s [string-interpolate] Running 1 test suites...
  652. 1760.31 s [string-interpolate] Test suite string-interpolate-test: RUNNING...
  653. 1760.31 s [string-interpolate] T
  654. 1760.31 s [string-interpolate] eTparseInterpSegments
  655. 1760.31 s [text-iso8601] Running 1 test suites...
  656. 1760.31 s [text-iso8601] Test suite text-iso8601-tests: RUNNING...
  657. 1760.31 s [text-iso8601] text-iso8601
  658. 1760.31 s [text-iso8601] roundtrip
  659. 1760.31 s [text-iso8601] Day: OK
  660. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  661. 1760.31 s [text-iso8601] LocalTime: OK
  662. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  663. 1760.31 s [text-iso8601] TimeZone: OK
  664. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  665. 1760.31 s [text-iso8601] UTCTime: OK
  666. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  667. 1760.31 s [text-iso8601] ZonedTime: OK
  668. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  669. 1760.31 s [text-iso8601] TimeOfDay: OK
  670. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  671. 1760.31 s [text-iso8601] Integer: OK
  672. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  673. 1760.31 s [text-iso8601] Month: OK
  674. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  675. 1760.31 s [text-iso8601] Quarter: OK
  676. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  677. 1760.31 s [text-iso8601] QuarterOfYear: OK
  678. 1760.31 s [text-iso8601] +++ OK, passed 100 tests.
  679. 1760.31 s [text-iso8601] accepts
  680. 1760.32 s [text-iso8601] UTCTime accepts "2023-06-09 02:35:33Z": OK
  681. 1760.32 s [text-iso8601] UTCTime accepts "2023-06-09T02:35:60Z": OK
  682. 1760.32 s [text-iso8601] UTCTime accepts "1985-04-12T23:20:50.52Z": OK
  683. 1760.32 s [text-iso8601] UTCTime accepts "1996-12-19T16:39:57-08:00": OK
  684. 1760.32 s [text-iso8601] UTCTime accepts "1990-12-31T23:59:60Z": OK
  685. 1760.32 s [text-iso8601] UTCTime accepts "1990-12-31T15:59:60-08:00": OK
  686. 1760.32 s [text-iso8601] UTCTime accepts "1937-01-01T12:00:27.87+00:20": OK
  687. 1760.32 s [text-iso8601] UTCTime accepts "1937-01-01 12:00Z": OK
  688. 1760.32 s [text-iso8601] LocalTime accepts "1937-01-01 12:00": OK
  689. 1760.32 s [text-iso8601] UTCTime accepts "1990-12-31T15:59:60-0800": OK
  690. 1760.32 s [text-iso8601] UTCTime accepts "1990-12-31T15:59:60-08": OK
  691. 1760.32 s [text-iso8601] UTCTime accepts "1937-01-01T12:00:00+23:59": OK
  692. 1760.32 s [text-iso8601] UTCTime accepts "1937-01-01T12:00:00-23:59": OK
  693. 1760.32 s [text-iso8601] rejected
  694. 1760.32 s [text-iso8601] UTCTime rejects "2023-06-09T02:35:33 Z": OK
  695. 1760.32 s [text-iso8601] Day rejects "99-12-12": OK
  696. 1760.32 s [text-iso8601] UTCTime rejects "2023-06-09T02:35:33z": OK
  697. 1760.32 s [text-iso8601] UTCTime rejects "2023-06-09t02:35:33Z": OK
  698. 1760.32 s [text-iso8601] UTCTime rejects "1937-01-01T12:00:00+24:59": OK
  699. 1760.32 s [text-iso8601] UTCTime rejects "1937-01-01T12:00:00-23:60": OK
  700. 1760.32 s [text-iso8601]
  701. 1760.32 s [text-iso8601] All 29 tests passed (0.01s)
  702. 1760.32 s [text-iso8601] Test suite text-iso8601-tests: PASS
  703. 1760.32 s [text-iso8601] Test suite logged to: dist/test/text-iso8601-0.1.1-text-iso8601-tests.log
  704. 1760.32 s [text-iso8601] 1 of 1 test suites (1 of 1 test cases) passed.
  705. 1760.32 s [text-iso8601] Phase: haddockPhase
  706. 1760.32 s [text-iso8601] Preprocessing library for text-iso8601-0.1.1...
  707. 1760.32 s [text-iso8601] Running Haddock on library for text-iso8601-0.1.1...
  708. 1760.32 s [text-iso8601] [1 of 2] Compiling Data.Time.FromText ( src/Data/Time/FromText.hs, nothing )
  709. 1760.32 s [text-iso8601] [2 of 2] Compiling Data.Time.ToText ( src/Data/Time/ToText.hs, nothing )
  710. 1760.32 s [text-iso8601] Haddock coverage:
  711. 1760.32 s [text-iso8601] Warning: 'zonedTime' is out of scope.
  712. 1760.32 s [text-iso8601] If you qualify the identifier, haddock can try to link it anyway.
  713. 1760.32 s [text-iso8601] 100% ( 11 / 11) in 'Data.Time.FromText'
  714. 1760.32 s [text-iso8601] 9% ( 1 / 11) in 'Data.Time.ToText'
  715. 1760.32 s [text-iso8601] Missing documentation for:
  716. 1760.32 s [text-iso8601] Module header
  717. 1760.32 s [text-iso8601] buildDay (src/Data/Time/ToText.hs:38)
  718. 1760.32 s [text-iso8601] buildLocalTime (src/Data/Time/ToText.hs:122)
  719. 1760.32 s [text-iso8601] buildTimeOfDay (src/Data/Time/ToText.hs:74)
  720. 1760.32 s [text-iso8601] buildTimeZone (src/Data/Time/ToText.hs:106)
  721. 1760.32 s [text-iso8601] buildUTCTime (src/Data/Time/ToText.hs:118)
  722. 1760.32 s [text-iso8601] buildZonedTime (src/Data/Time/ToText.hs:126)
  723. 1760.32 s [text-iso8601] buildMonth (src/Data/Time/ToText.hs:43)
  724. 1760.32 s [text-iso8601] buildQuarter (src/Data/Time/ToText.hs:48)
  725. 1760.32 s [text-iso8601] buildQuarterOfYear (src/Data/Time/ToText.hs:53)
  726. 1760.32 s [tomland] shrinking RPATHs of ELF executables and libraries in /nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc
  727. 1760.32 s [tomland] checking for references to /build/ in /nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc...
  728. 1760.32 s [tomland] patching script interpreter paths in /nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc
  729. 1760.44 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0
  730. 1761.09 s [post-build-hook] Pushing 2 paths (74 are already present) using zstd to cache sellout ⏳
  731. 1761.09 s [post-build-hook]
  732. 1761.56 s [post-build-hook] Pushing /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0 (10.24 MiB)
  733. 1761.67 s [post-build-hook] Pushing /nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc (2.05 MiB)
  734. 1762.71 s [post-build-hook]
  735. 1762.71 s [post-build-hook] All done.
  736. 1762.76 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc /nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0
  737. 1762.86 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  738. 1763.28 s [post-build-hook] copying 2 paths...
  739. 1763.28 s [post-build-hook] copying path '/nix/store/8szn5s15zvkgqc6pw8j5ww15p9khn57l-base64-1.0-doc' to 'https://cache.nix-ci.com'...
  740. 1763.69 s [post-build-hook] copying path '/nix/store/hraff33zbh3dd1vr0hg3pww91dcb26k9-base64-1.0' to 'https://cache.nix-ci.com'...
  741. 1765.93 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  742. 1766.13 s [post-build-hook] copying 1 paths...
  743. 1766.13 s [post-build-hook] copying path '/nix/store/xab1jp0m5pqjjpqwqqi2xbvs9xq977ir-base64-1.0.drv' to 'https://cache.nix-ci.com'...
  744. 1766.28 s [extra] +++ OK, passed 100 tests.
  745. 1766.28 s [extra] minimumOn length ["test","extra","a"] == "a"
  746. 1766.28 s [extra] +++ OK, passed 100 tests.
  747. 1766.28 s [extra] groupSort [(1,'t'),(3,'t'),(2,'e'),(2,'s')] == [(1,"t"),(2,"es"),(3,"t")]
  748. 1766.28 s [extra] +++ OK, passed 100 tests.
  749. 1766.28 s [extra] \xs -> map fst (groupSort xs) == sort (nub (map fst xs))
  750. 1766.28 s [extra] +++ OK, passed 100 tests.
  751. 1766.28 s [extra] \xs -> concatMap snd (groupSort xs) == map snd (sortOn fst xs)
  752. 1766.28 s [extra] +++ OK, passed 100 tests.
  753. 1766.28 s [extra] groupSortOn length ["test","of","sized","item"] == [["of"],["test","item"],["sized"]]
  754. 1766.28 s [extra] +++ OK, passed 100 tests.
  755. 1766.28 s [extra] groupSortBy (compare `on` length) ["test","of","sized","item"] == [["of"],["test","item"],["sized"]]
  756. 1766.28 s [extra] +++ OK, passed 100 tests.
  757. 1766.28 s [extra] sum' [1, 2, 3] == 6
  758. 1766.28 s [extra] +++ OK, passed 100 tests.
  759. 1766.28 s [extra] sumOn' read ["1", "2", "3"] == 6
  760. 1766.28 s [extra] +++ OK, passed 100 tests.
  761. 1766.28 s [extra] product' [1, 2, 4] == 8
  762. 1766.28 s [extra] +++ OK, passed 100 tests.
  763. 1766.28 s [extra] productOn' read ["1", "2", "4"] == 8
  764. 1766.28 s [extra] +++ OK, passed 100 tests.
  765. 1766.28 s [extra] merge "ace" "bd" == "abcde"
  766. 1766.28 s [extra] +++ OK, passed 100 tests.
  767. 1766.28 s [extra] \xs ys -> merge (sort xs) (sort ys) == sort (xs ++ ys)
  768. 1766.28 s [extra] +++ OK, passed 100 tests.
  769. 1766.28 s [extra] replace "el" "_" "Hello Bella" == "H_lo B_la"
  770. 1766.28 s [extra] +++ OK, passed 100 tests.
  771. 1766.29 s [extra] replace "el" "e" "Hello" == "Helo"
  772. 1766.29 s [extra] +++ OK, passed 100 tests.
  773. 1766.29 s [extra] replace "" "x" "Hello" == "xHxexlxlxox"
  774. 1766.29 s [extra] +++ OK, passed 100 tests.
  775. 1766.29 s [extra] replace "" "x" "" == "x"
  776. 1766.29 s [extra] +++ OK, passed 100 tests.
  777. 1766.29 s [extra] \xs ys -> replace xs xs ys == ys
  778. 1766.29 s [extra] +++ OK, passed 100 tests.
  779. 1766.29 s [extra] breakEnd isLower "youRE" == ("you","RE")
  780. 1766.29 s [extra] +++ OK, passed 100 tests.
  781. 1766.29 s [extra] breakEnd isLower "youre" == ("youre","")
  782. 1766.29 s [extra] +++ OK, passed 100 tests.
  783. 1766.29 s [extra] breakEnd isLower "YOURE" == ("","YOURE")
  784. 1766.29 s [extra] +++ OK, passed 100 tests.
  785. 1766.29 s [extra] \f xs -> breakEnd (not . f) xs == spanEnd f xs
  786. 1766.29 s [extra] +++ OK, passed 100 tests.
  787. 1766.29 s [extra] spanEnd isUpper "youRE" == ("you","RE")
  788. 1766.29 s [extra] +++ OK, passed 100 tests.
  789. 1766.29 s [extra] spanEnd (not . isSpace) "x y z" == ("x y ","z")
  790. 1766.29 s [extra] +++ OK, passed 100 tests.
  791. 1766.29 s [extra] \f xs -> uncurry (++) (spanEnd f xs) == xs
  792. 1766.29 s [extra] +++ OK, passed 100 tests.
  793. 1766.29 s [extra] \f xs -> spanEnd f xs == swap (both reverse (span f (reverse xs)))
  794. 1766.29 s [extra] +++ OK, passed 100 tests.
  795. 1766.29 s [extra] wordsBy (== ':') "::xyz:abc::123::" == ["xyz","abc","123"]
  796. 1766.29 s [extra] +++ OK, passed 100 tests.
  797. 1766.29 s [extra] \s -> wordsBy isSpace s == words s
  798. 1766.29 s [extra] +++ OK, passed 100 tests.
  799. 1766.29 s [extra] linesBy (== ':') "::xyz:abc::123::" == ["","","xyz","abc","","123",""]
  800. 1766.29 s [extra] +++ OK, passed 100 tests.
  801. 1766.29 s [extra] \s -> linesBy (== '\n') s == lines s
  802. 1766.29 s [extra] +++ OK, passed 100 tests.
  803. 1766.29 s [extra] linesBy (== ';') "my;list;here;" == ["my","list","here"]
  804. 1766.29 s [extra] +++ OK, passed 100 tests.
  805. 1766.29 s [extra] firstJust id [Nothing,Just 3] == Just 3
  806. 1766.29 s [extra] +++ OK, passed 100 tests.
  807. 1766.29 s [extra] firstJust id [Nothing,Nothing] == Nothing
  808. 1766.29 s [extra] +++ OK, passed 100 tests.
  809. 1766.29 s [extra] drop1 "" == ""
  810. 1766.29 s [extra] +++ OK, passed 100 tests.
  811. 1766.29 s [extra] drop1 "test" == "est"
  812. 1766.29 s [extra] +++ OK, passed 100 tests.
  813. 1766.29 s [extra] \xs -> drop 1 xs == drop1 xs
  814. 1766.29 s [extra] +++ OK, passed 100 tests.
  815. 1766.29 s [extra] dropEnd1 "" == ""
  816. 1766.29 s [extra] +++ OK, passed 100 tests.
  817. 1766.29 s [extra] dropEnd1 "test" == "tes"
  818. 1766.29 s [extra] +++ OK, passed 100 tests.
  819. 1766.29 s [extra] \xs -> dropEnd 1 xs == dropEnd1 xs
  820. 1766.29 s [extra] +++ OK, passed 100 tests.
  821. 1766.29 s [extra] mconcatMap Sum [1,2,3] == Sum 6
  822. 1766.29 s [extra] +++ OK, passed 100 tests.
  823. 1766.29 s [extra] \f xs -> mconcatMap f xs == concatMap f xs
  824. 1766.29 s [extra] +++ OK, passed 100 tests.
  825. 1766.29 s [extra] breakOn "::" "a::b::c" == ("a", "::b::c")
  826. 1766.29 s [extra] +++ OK, passed 100 tests.
  827. 1766.29 s [extra] breakOn "/" "foobar" == ("foobar", "")
  828. 1766.29 s [extra] +++ OK, passed 100 tests.
  829. 1766.29 s [extra] \needle haystack -> let (prefix,match) = breakOn needle haystack in prefix ++ match == haystack
  830. 1766.29 s [extra] +++ OK, passed 100 tests.
  831. 1766.29 s [extra] breakOnEnd "::" "a::b::c" == ("a::b::", "c")
  832. 1766.29 s [extra] +++ OK, passed 100 tests.
  833. 1766.29 s [extra] splitOn "\r\n" "a\r\nb\r\nd\r\ne" == ["a","b","d","e"]
  834. 1766.29 s [extra] +++ OK, passed 100 tests.
  835. 1766.29 s [extra] splitOn "aaa" "aaaXaaaXaaaXaaa" == ["","X","X","X",""]
  836. 1766.29 s [extra] +++ OK, passed 100 tests.
  837. 1766.29 s [extra] splitOn "x" "x" == ["",""]
  838. 1766.29 s [extra] +++ OK, passed 100 tests.
  839. 1766.29 s [extra] splitOn "x" "" == [""]
  840. 1766.29 s [extra] +++ OK, passed 100 tests.
  841. 1766.29 s [extra] \s x -> s /= "" ==> intercalate s (splitOn s x) == x
  842. 1766.29 s [extra] +++ OK, passed 100 tests; 13 discarded.
  843. 1766.29 s [extra] \c x -> splitOn [c] x == split (==c) x
  844. 1766.29 s [extra] +++ OK, passed 100 tests.
  845. 1766.29 s [extra] split (== 'a') "aabbaca" == ["","","bb","c",""]
  846. 1766.29 s [extra] +++ OK, passed 100 tests.
  847. 1766.29 s [extra] split (== 'a') "" == [""]
  848. 1766.29 s [extra] +++ OK, passed 100 tests.
  849. 1766.29 s [extra] split (== ':') "::xyz:abc::123::" == ["","","xyz","abc","","123","",""]
  850. 1766.29 s [extra] +++ OK, passed 100 tests.
  851. 1766.29 s [extra] split (== ',') "my,list,here" == ["my","list","here"]
  852. 1766.29 s [extra] +++ OK, passed 100 tests.
  853. 1766.29 s [extra] dropWhileEnd isSpace "ab cde " == "ab cde"
  854. 1766.29 s [extra] +++ OK, passed 100 tests.
  855. 1766.29 s [extra] dropWhileEnd' isSpace "ab cde " == "ab cde"
  856. 1766.29 s [free] [ 2 of 19] Compiling Control.Alternative.Free.Final ( src/Control/Alternative/Free/Final.hs, dist/build/Control/Alternative/Free/Final.p_o )
  857. 1766.29 s [free] [ 3 of 19] Compiling Control.Applicative.Free ( src/Control/Applicative/Free.hs, dist/build/Control/Applicative/Free.p_o )
  858. 1766.29 s [free] [ 4 of 19] Compiling Control.Applicative.Free.Fast ( src/Control/Applicative/Free/Fast.hs, dist/build/Control/Applicative/Free/Fast.p_o )
  859. 1766.29 s [free] [ 5 of 19] Compiling Control.Applicative.Free.Final ( src/Control/Applicative/Free/Final.hs, dist/build/Control/Applicative/Free/Final.p_o )
  860. 1766.29 s [free] [ 6 of 19] Compiling Control.Applicative.Trans.Free ( src/Control/Applicative/Trans/Free.hs, dist/build/Control/Applicative/Trans/Free.p_o )
  861. 1766.29 s [free] [ 7 of 19] Compiling Control.Comonad.Cofree.Class ( src/Control/Comonad/Cofree/Class.hs, dist/build/Control/Comonad/Cofree/Class.p_o )
  862. 1766.29 s [free] [ 8 of 19] Compiling Control.Comonad.Cofree ( src/Control/Comonad/Cofree.hs, dist/build/Control/Comonad/Cofree.p_o )
  863. 1766.29 s [free] [ 9 of 19] Compiling Control.Comonad.Trans.Cofree ( src/Control/Comonad/Trans/Cofree.hs, dist/build/Control/Comonad/Trans/Cofree.p_o )
  864. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Positioned.hs:33:1: warning: [GHC-66111] [-Wunused-imports]
  865. 1766.29 s [monoid-subclasses] The import of ‘Data.Semigroup’ is redundant
  866. 1766.29 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup’
  867. 1766.29 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup()
  868. 1766.29 s [monoid-subclasses] |
  869. 1766.29 s [monoid-subclasses] 33 | import Data.Semigroup (Semigroup(..))
  870. 1766.29 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  871. 1766.29 s [monoid-subclasses]
  872. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Positioned.hs:34:21: warning: [GHC-38856] [-Wunused-imports]
  873. 1766.29 s [monoid-subclasses] The import of ‘Monoid’ from module ‘Data.Monoid’ is redundant
  874. 1766.29 s [monoid-subclasses] |
  875. 1766.29 s [monoid-subclasses] 34 | import Data.Monoid (Monoid(..), Endo(..))
  876. 1766.29 s [monoid-subclasses] | ^^^^^^^^^^
  877. 1766.29 s [monoid-subclasses]
  878. 1766.29 s [monoid-subclasses] [14 of 16] Compiling Data.Monoid.Instances.Measured ( src/Data/Monoid/Instances/Measured.hs, dist/build/Data/Monoid/Instances/Measured.o, dist/build/Data/Monoid/Instances/Measured.dyn_o )
  879. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Measured.hs:21:1: warning: [GHC-66111] [-Wunused-imports]
  880. 1766.29 s [monoid-subclasses] The import of ‘Data.Semigroup’ is redundant
  881. 1766.29 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup’
  882. 1766.29 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup()
  883. 1766.29 s [monoid-subclasses] |
  884. 1766.29 s [monoid-subclasses] 21 | import Data.Semigroup (Semigroup(..))
  885. 1766.29 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  886. 1766.29 s [monoid-subclasses]
  887. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Measured.hs:22:1: warning: [GHC-66111] [-Wunused-imports]
  888. 1766.29 s [monoid-subclasses] The import of ‘Data.Monoid’ is redundant
  889. 1766.29 s [monoid-subclasses] except perhaps to import instances from ‘Data.Monoid’
  890. 1766.29 s [monoid-subclasses] To import instances alone, use: import Data.Monoid()
  891. 1766.29 s [monoid-subclasses] |
  892. 1766.29 s [monoid-subclasses] 22 | import Data.Monoid (Monoid(..))
  893. 1766.29 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  894. 1766.29 s [monoid-subclasses]
  895. 1766.29 s [monoid-subclasses] [15 of 16] Compiling Data.Monoid.Instances.Concat ( src/Data/Monoid/Instances/Concat.hs, dist/build/Data/Monoid/Instances/Concat.o, dist/build/Data/Monoid/Instances/Concat.dyn_o )
  896. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Concat.hs:23:1: warning: [GHC-66111] [-Wunused-imports]
  897. 1766.29 s [monoid-subclasses] The import of ‘Data.Semigroup’ is redundant
  898. 1766.29 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup’
  899. 1766.29 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup()
  900. 1766.29 s [monoid-subclasses] |
  901. 1766.29 s [monoid-subclasses] 23 | import Data.Semigroup (Semigroup(..))
  902. 1766.29 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  903. 1766.29 s [monoid-subclasses]
  904. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Concat.hs:24:21: warning: [GHC-38856] [-Wunused-imports]
  905. 1766.29 s [monoid-subclasses] The import of ‘Monoid’ from module ‘Data.Monoid’ is redundant
  906. 1766.29 s [monoid-subclasses] |
  907. 1766.29 s [monoid-subclasses] 24 | import Data.Monoid (Monoid(..), First(..), Sum(..))
  908. 1766.29 s [monoid-subclasses] | ^^^^^^^^^^
  909. 1766.29 s [monoid-subclasses]
  910. 1766.29 s [monoid-subclasses] src/Data/Monoid/Instances/Concat.hs:199:26: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  911. 1766.29 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  912. 1766.29 s [monoid-subclasses] In an irrefutable pattern:
  913. 1766.29 s [monoid-subclasses] Patterns of type ‘[Concat a]’ not matched: []
  914. 1766.29 s [monoid-subclasses] |
  915. 1766.29 s [monoid-subclasses] 199 | where splitNext a ~(xp:xs) =
  916. 1766.44 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc /nix/store/yx9g351lch3sjfklaakyf80i6yal3yk0-tomland-1.3.3.3
  917. 1767.35 s [post-build-hook] Pushing 2 paths (90 are already present) using zstd to cache sellout ⏳
  918. 1767.35 s [post-build-hook]
  919. 1768.09 s [post-build-hook] Pushing /nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc (4.05 MiB)
  920. 1768.12 s [post-build-hook] Pushing /nix/store/yx9g351lch3sjfklaakyf80i6yal3yk0-tomland-1.3.3.3 (17.39 MiB)
  921. 1770.51 s [post-build-hook]
  922. 1770.51 s [post-build-hook] All done.
  923. 1770.53 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc /nix/store/yx9g351lch3sjfklaakyf80i6yal3yk0-tomland-1.3.3.3
  924. 1770.57 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  925. 1770.71 s [post-build-hook] copying 2 paths...
  926. 1770.71 s [post-build-hook] copying path '/nix/store/ibxqq3fpwz8xj7ay0rmqm1gq8l0kkia8-tomland-1.3.3.3-doc' to 'https://cache.nix-ci.com'...
  927. 1771.42 s [post-build-hook] copying path '/nix/store/yx9g351lch3sjfklaakyf80i6yal3yk0-tomland-1.3.3.3' to 'https://cache.nix-ci.com'...
  928. 1775.60 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  929. 1775.80 s [post-build-hook] copying 1 paths...
  930. 1775.82 s [post-build-hook] copying path '/nix/store/0yyhr1ksr22d4dp744ldqqw4q5ah6nwl-tomland-1.3.3.3.drv' to 'https://cache.nix-ci.com'...
  931. 1776.00 s Building trial-tomland
  932. 1776.00 s [either] Documentation created: dist/doc/html/either/, dist/doc/html/either/either.txt
  933. 1776.00 s [either] Preprocessing test suite 'tests' for either-5.0.3...
  934. 1776.00 s [either] Phase: installPhase
  935. 1776.00 s [either] Installing library in /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/either-5.0.3-FmgvlamEnD6G5Dv9bJGdMo
  936. 1776.00 s [either] Phase: fixupPhase
  937. 1776.00 s [either] shrinking RPATHs of ELF executables and libraries in /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3
  938. 1776.00 s [either] shrinking /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSeither-5.0.3-FmgvlamEnD6G5Dv9bJGdMo-ghc9.10.2.so
  939. 1776.00 s [either] checking for references to /build/ in /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3...
  940. 1776.00 s [either] patching script interpreter paths in /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3
  941. 1776.00 s [either] stripping (with command strip and flags -S -p) in /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3/lib
  942. 1776.00 s [either] shrinking RPATHs of ELF executables and libraries in /nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc
  943. 1776.00 s [either] checking for references to /build/ in /nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc...
  944. 1776.00 s [either] patching script interpreter paths in /nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc
  945. 1776.00 s [extra] +++ OK, passed 100 tests.
  946. 1776.00 s [extra] last (dropWhileEnd even [undefined,3]) == undefined
  947. 1776.00 s [extra] +++ OK, passed 100 tests.
  948. 1776.00 s [extra] last (dropWhileEnd' even [undefined,3]) == 3
  949. 1776.00 s [extra] +++ OK, passed 100 tests.
  950. 1776.00 s [extra] head (dropWhileEnd even (3:undefined)) == 3
  951. 1776.00 s [extra] +++ OK, passed 100 tests.
  952. 1776.00 s [extra] head (dropWhileEnd' even (3:undefined)) == undefined
  953. 1776.00 s [extra] +++ OK, passed 100 tests.
  954. 1776.00 s [extra] dropPrefix "Mr. " "Mr. Men" == "Men"
  955. 1776.00 s [extra] +++ OK, passed 100 tests.
  956. 1776.00 s [extra] dropPrefix "Mr. " "Dr. Men" == "Dr. Men"
  957. 1776.00 s [extra] +++ OK, passed 100 tests.
  958. 1776.00 s [extra] dropSuffix "!" "Hello World!" == "Hello World"
  959. 1776.00 s [extra] +++ OK, passed 100 tests.
  960. 1776.00 s [extra] dropSuffix "!" "Hello World!!" == "Hello World!"
  961. 1776.00 s [extra] +++ OK, passed 100 tests.
  962. 1776.00 s [extra] dropSuffix "!" "Hello World." == "Hello World."
  963. 1776.00 s [extra] +++ OK, passed 100 tests.
  964. 1776.00 s [extra] stripSuffix "bar" "foobar" == Just "foo"
  965. 1776.00 s [extra] +++ OK, passed 100 tests.
  966. 1776.00 s [extra] stripSuffix "" "baz" == Just "baz"
  967. 1776.00 s [extra] +++ OK, passed 100 tests.
  968. 1776.00 s [extra] stripSuffix "foo" "quux" == Nothing
  969. 1776.00 s [extra] +++ OK, passed 100 tests.
  970. 1776.00 s [extra] stripInfix "::" "a::b::c" == Just ("a", "b::c")
  971. 1776.00 s [extra] +++ OK, passed 100 tests.
  972. 1776.00 s [extra] stripInfix "/" "foobar" == Nothing
  973. 1776.00 s [extra] +++ OK, passed 100 tests.
  974. 1776.00 s [extra] stripInfixEnd "::" "a::b::c" == Just ("a::b", "c")
  975. 1776.00 s [extra] +++ OK, passed 100 tests.
  976. 1776.00 s [extra] chunksOf 3 "my test" == ["my ","tes","t"]
  977. 1776.00 s [extra] +++ OK, passed 100 tests.
  978. 1776.00 s [extra] chunksOf 3 "mytest" == ["myt","est"]
  979. 1776.00 s [extra] +++ OK, passed 100 tests.
  980. 1776.00 s [extra] chunksOf 8 "" == []
  981. 1776.00 s [extra] +++ OK, passed 100 tests.
  982. 1776.00 s [extra] chunksOf 0 "test" == undefined
  983. 1776.00 s [extra] +++ OK, passed 100 tests.
  984. 1776.00 s [extra] nubSort "this is a test" == " aehist"
  985. 1776.00 s [extra] +++ OK, passed 100 tests.
  986. 1776.00 s [extra] \xs -> nubSort xs == nub (sort xs)
  987. 1776.00 s [extra] +++ OK, passed 100 tests.
  988. 1776.00 s [extra] nubSortOn length ["a","test","of","this"] == ["a","of","test"]
  989. 1776.00 s [extra] +++ OK, passed 100 tests.
  990. 1776.00 s [extra] nubSortBy (compare `on` length) ["a","test","of","this"] == ["a","of","test"]
  991. 1776.00 s [extra] +++ OK, passed 100 tests.
  992. 1776.00 s [extra] nubOrd "this is a test" == "this ae"
  993. 1776.00 s [extra] +++ OK, passed 100 tests.
  994. 1776.00 s [extra] nubOrd (take 4 ("this" ++ undefined)) == "this"
  995. 1776.00 s [extra] +++ OK, passed 100 tests.
  996. 1776.00 s [extra] \xs -> nubOrd xs == nub xs
  997. 1776.00 s [extra] +++ OK, passed 100 tests.
  998. 1776.00 s [extra] nubOrdOn length ["a","test","of","this"] == ["a","test","of"]
  999. 1776.00 s [extra] +++ OK, passed 100 tests.
  1000. 1776.00 s [extra] nubOrdBy (compare `on` length) ["a","test","of","this"] == ["a","test","of"]
  1001. 1776.00 s [extra] +++ OK, passed 100 tests.
  1002. 1776.00 s [extra] zipWithLongest (,) "a" "xyz" == [(Just 'a', Just 'x'), (Nothing, Just 'y'), (Nothing, Just 'z')]
  1003. 1776.00 s [extra] +++ OK, passed 100 tests.
  1004. 1776.00 s [extra] zipWithLongest (,) "a" "x" == [(Just 'a', Just 'x')]
  1005. 1776.00 s [extra] +++ OK, passed 100 tests.
  1006. 1776.00 s [extra] zipWithLongest (,) "" "x" == [(Nothing, Just 'x')]
  1007. 1776.00 s [extra] +++ OK, passed 100 tests.
  1008. 1776.00 s [extra] comparingLength [1,2,3] [False] == GT
  1009. 1776.00 s [extra] +++ OK, passed 100 tests.
  1010. 1776.00 s [extra] comparingLength [1,2] "ab" == EQ
  1011. 1776.00 s [extra] +++ OK, passed 100 tests.
  1012. 1776.00 s [extra] \(xs :: [Int]) (ys :: [Int]) -> comparingLength xs ys == Data.Ord.comparing length xs ys
  1013. 1776.00 s [extra] +++ OK, passed 100 tests.
  1014. 1776.00 s [extra] comparingLength [1,2] (1:2:3:undefined) == LT
  1015. 1776.00 s [extra] +++ OK, passed 100 tests.
  1016. 1776.00 s [extra] comparingLength (1:2:3:undefined) [1,2] == GT
  1017. 1776.00 s [extra] +++ OK, passed 100 tests.
  1018. 1776.00 s [extra] mwhen True "test" == "test"
  1019. 1776.00 s [extra] +++ OK, passed 100 tests.
  1020. 1776.00 s [extra] mwhen False "test" == ""
  1021. 1776.00 s [extra] +++ OK, passed 100 tests.
  1022. 1776.00 s [extra] first succ (1,"test") == (2,"test")
  1023. 1776.00 s [extra] +++ OK, passed 100 tests.
  1024. 1776.00 s [extra] second reverse (1,"test") == (1,"tset")
  1025. 1776.00 s [extra] +++ OK, passed 100 tests.
  1026. 1776.00 s [extra] firstM (\x -> [x-1, x+1]) (1,"test") == [(0,"test"),(2,"test")]
  1027. 1776.00 s [extra] +++ OK, passed 100 tests.
  1028. 1776.00 s [extra] secondM (\x -> [reverse x, x]) (1,"test") == [(1,"tset"),(1,"test")]
  1029. 1776.00 s [extra] +++ OK, passed 100 tests.
  1030. 1776.00 s [extra] (succ *** reverse) (1,"test") == (2,"tset")
  1031. 1776.00 s [extra] +++ OK, passed 100 tests.
  1032. 1776.00 s [extra] (succ &&& pred) 1 == (2,0)
  1033. 1776.00 s [extra] +++ OK, passed 100 tests.
  1034. 1776.00 s [extra] dupe 12 == (12, 12)
  1035. 1776.00 s [extra] +++ OK, passed 100 tests.
  1036. 1776.00 s [extra] both succ (1,2) == (2,3)
  1037. 1776.00 s [extra] +++ OK, passed 100 tests.
  1038. 1776.00 s [extra] first3 succ (1,1,1) == (2,1,1)
  1039. 1776.00 s [extra] +++ OK, passed 100 tests.
  1040. 1776.00 s [extra] second3 succ (1,1,1) == (1,2,1)
  1041. 1776.00 s [extra] +++ OK, passed 100 tests.
  1042. 1776.00 s [extra] third3 succ (1,1,1) == (1,1,2)
  1043. 1776.00 s [extra] +++ OK, passed 100 tests.
  1044. 1776.00 s [extra] \x -> readVersion (showVersion x) == x
  1045. 1776.00 s [extra] +++ OK, passed 100 tests.
  1046. 1776.00 s [extra] readVersion "hello" == undefined
  1047. 1776.00 s [extra] +++ OK, passed 100 tests.
  1048. 1776.00 s [extra] showDP 4 pi == "3.1416"
  1049. 1776.00 s [extra] +++ OK, passed 100 tests.
  1050. 1776.00 s [extra] showDP 0 pi == "3"
  1051. 1776.00 s [extra] +++ OK, passed 100 tests.
  1052. 1776.00 s [extra] showDP 2 3 == "3.00"
  1053. 1776.00 s [extra] +++ OK, passed 100 tests.
  1054. 1776.00 s [extra] withTempDir $ \dir -> do writeFile (dir </> "foo.txt") ""; withCurrentDirectory dir $ doesFileExist "foo.txt"
  1055. 1776.00 s [extra] +++ OK, passed 100 tests.
  1056. 1776.00 s [extra] withTempDir $ \dir -> do writeFile (dir </> "test.txt") ""; (== [dir </> "test.txt"]) <$> listContents dir
  1057. 1776.00 s [extra] +++ OK, passed 100 tests.
  1058. 1776.00 s [foldl] [6 of 9] Compiling Control.Foldl.Text ( src/Control/Foldl/Text.hs, dist/build/Control/Foldl/Text.p_o )
  1059. 1776.00 s [foldl] [7 of 9] Compiling Control.Foldl.NonEmpty ( src/Control/Foldl/NonEmpty.hs, dist/build/Control/Foldl/NonEmpty.p_o )
  1060. 1776.00 s [foldl] src/Control/Foldl/NonEmpty.hs:64:29: warning: [GHC-38856] [-Wunused-imports]
  1061. 1776.00 s [foldl] The import of ‘liftA2’
  1062. 1776.00 s [foldl] from module ‘Control.Applicative’ is redundant
  1063. 1776.00 s [foldl] |
  1064. 1776.00 s [foldl] 64 | import Control.Applicative (liftA2, Const(..))
  1065. 1776.00 s [foldl] | ^^^^^^
  1066. 1776.00 s [foldl]
  1067. 1776.00 s [foldl] [8 of 9] Compiling Control.Foldl.ByteString ( src/Control/Foldl/ByteString.hs, dist/build/Control/Foldl/ByteString.p_o )
  1068. 1776.00 s [foldl] [9 of 9] Compiling Control.Scanl ( src/Control/Scanl.hs, dist/build/Control/Scanl.p_o )
  1069. 1776.00 s [foldl] Preprocessing test suite 'doctest' for foldl-1.4.18...
  1070. 1776.00 s [foldl] Building test suite 'doctest' for foldl-1.4.18...
  1071. 1776.00 s [foldl] [1 of 1] Compiling Main ( test/doctest.hs, dist/build/doctest/doctest-tmp/Main.o )
  1072. 1776.00 s [foldl] [2 of 2] Linking dist/build/doctest/doctest
  1073. 1776.00 s [foldl] Phase: checkPhase
  1074. 1776.00 s [foldl] Running 1 test suites...
  1075. 1776.00 s [foldl] Test suite doctest: RUNNING...
  1076. 1776.00 s [free] [10 of 19] Compiling Control.Comonad.Trans.Coiter ( src/Control/Comonad/Trans/Coiter.hs, dist/build/Control/Comonad/Trans/Coiter.p_o )
  1077. 1776.00 s [free] [11 of 19] Compiling Control.Monad.Free.Class ( src/Control/Monad/Free/Class.hs, dist/build/Control/Monad/Free/Class.p_o )
  1078. 1776.00 s [free] [12 of 19] Compiling Control.Monad.Free.TH ( src/Control/Monad/Free/TH.hs, dist/build/Control/Monad/Free/TH.p_o )
  1079. 1776.00 s [free] [13 of 19] Compiling Control.Monad.Trans.Free ( src/Control/Monad/Trans/Free.hs, dist/build/Control/Monad/Trans/Free.p_o )
  1080. 1776.00 s [free] [14 of 19] Compiling Control.Monad.Free ( src/Control/Monad/Free.hs, dist/build/Control/Monad/Free.p_o )
  1081. 1776.00 s [free] [15 of 19] Compiling Control.Monad.Free.Church ( src/Control/Monad/Free/Church.hs, dist/build/Control/Monad/Free/Church.p_o )
  1082. 1776.00 s [free] [16 of 19] Compiling Control.Monad.Trans.Free.Ap ( src/Control/Monad/Trans/Free/Ap.hs, dist/build/Control/Monad/Trans/Free/Ap.p_o )
  1083. 1776.00 s [free] [17 of 19] Compiling Control.Monad.Free.Ap ( src/Control/Monad/Free/Ap.hs, dist/build/Control/Monad/Free/Ap.p_o )
  1084. 1776.00 s [free] [18 of 19] Compiling Control.Monad.Trans.Free.Church ( src/Control/Monad/Trans/Free/Church.hs, dist/build/Control/Monad/Trans/Free/Church.p_o )
  1085. 1776.00 s [free] [19 of 19] Compiling Control.Monad.Trans.Iter ( src/Control/Monad/Trans/Iter.hs, dist/build/Control/Monad/Trans/Iter.p_o )
  1086. 1776.00 s [free] Phase: checkPhase
  1087. 1776.00 s [free] Package has no test suites.
  1088. 1776.00 s [free] Phase: haddockPhase
  1089. 1776.00 s [free] Preprocessing library for free-5.2...
  1090. 1776.00 s [free] Running Haddock on library for free-5.2...
  1091. 1776.00 s [free] [ 1 of 19] Compiling Control.Alternative.Free ( src/Control/Alternative/Free.hs, nothing )
  1092. 1776.00 s [free] [ 2 of 19] Compiling Control.Alternative.Free.Final ( src/Control/Alternative/Free/Final.hs, nothing )
  1093. 1776.00 s [free] [ 3 of 19] Compiling Control.Applicative.Free ( src/Control/Applicative/Free.hs, nothing )
  1094. 1776.00 s [free] [ 4 of 19] Compiling Control.Applicative.Free.Fast ( src/Control/Applicative/Free/Fast.hs, nothing )
  1095. 1776.00 s [free] [ 5 of 19] Compiling Control.Applicative.Free.Final ( src/Control/Applicative/Free/Final.hs, nothing )
  1096. 1776.00 s [free] [ 6 of 19] Compiling Control.Applicative.Trans.Free ( src/Control/Applicative/Trans/Free.hs, nothing )
  1097. 1776.00 s [free] [ 7 of 19] Compiling Control.Comonad.Cofree.Class ( src/Control/Comonad/Cofree/Class.hs, nothing )
  1098. 1776.00 s [free] [ 8 of 19] Compiling Control.Comonad.Cofree ( src/Control/Comonad/Cofree.hs, nothing )
  1099. 1776.00 s [free] [ 9 of 19] Compiling Control.Comonad.Trans.Cofree ( src/Control/Comonad/Trans/Cofree.hs, nothing )
  1100. 1776.00 s [free] [10 of 19] Compiling Control.Comonad.Trans.Coiter ( src/Control/Comonad/Trans/Coiter.hs, nothing )
  1101. 1776.00 s [free] [11 of 19] Compiling Control.Monad.Free.Class ( src/Control/Monad/Free/Class.hs, nothing )
  1102. 1776.00 s [free] [12 of 19] Compiling Control.Monad.Free.TH ( src/Control/Monad/Free/TH.hs, nothing )
  1103. 1776.00 s [free] [13 of 19] Compiling Control.Monad.Trans.Free ( src/Control/Monad/Trans/Free.hs, nothing )
  1104. 1776.00 s [free] [14 of 19] Compiling Control.Monad.Free ( src/Control/Monad/Free.hs, nothing )
  1105. 1776.00 s [free] [15 of 19] Compiling Control.Monad.Free.Church ( src/Control/Monad/Free/Church.hs, nothing )
  1106. 1776.00 s [free] [16 of 19] Compiling Control.Monad.Trans.Free.Ap ( src/Control/Monad/Trans/Free/Ap.hs, nothing )
  1107. 1776.00 s [free] [17 of 19] Compiling Control.Monad.Free.Ap ( src/Control/Monad/Free/Ap.hs, nothing )
  1108. 1776.00 s [free] [18 of 19] Compiling Control.Monad.Trans.Free.Church ( src/Control/Monad/Trans/Free/Church.hs, nothing )
  1109. 1776.00 s [free] [19 of 19] Compiling Control.Monad.Trans.Iter ( src/Control/Monad/Trans/Iter.hs, nothing )
  1110. 1776.00 s [free] Haddock coverage:
  1111. 1776.00 s [free] Warning: 'lift' is out of scope.
  1112. 1776.00 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1113. 1776.00 s [free] Warning: 'Alt' is ambiguous. It is defined
  1114. 1776.00 s [free] * at src/Control/Alternative/Free.hs:43:19
  1115. 1776.00 s [free] * at src/Control/Alternative/Free.hs:43:1
  1116. 1776.00 s [free] You may be able to disambiguate the identifier by qualifying it or
  1117. 1776.00 s [free] by specifying the type/value namespace explicitly.
  1118. 1776.00 s [free] Defaulting to the one defined at src/Control/Alternative/Free.hs:43:1
  1119. 1776.00 s [free] 66% ( 4 / 6) in 'Control.Alternative.Free'
  1120. 1776.00 s [free] Missing documentation for:
  1121. 1776.00 s [free] Alt (src/Control/Alternative/Free.hs:43)
  1122. 1776.00 s [free] AltF (src/Control/Alternative/Free.hs:39)
  1123. 1776.00 s [free] Warning: 'lift' is out of scope.
  1124. 1776.00 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1125. 1776.00 s [free] Warning: 'Alt' is ambiguous. It is defined
  1126. 1776.00 s [indexed-traversable-instances] shrinking RPATHs of ELF executables and libraries in /nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc
  1127. 1776.00 s [indexed-traversable-instances] checking for references to /build/ in /nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc...
  1128. 1776.00 s [indexed-traversable-instances] patching script interpreter paths in /nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc
  1129. 1776.00 s [monoid-subclasses] | ^^^^^^^
  1130. 1776.00 s [monoid-subclasses]
  1131. 1776.00 s [monoid-subclasses] src/Data/Monoid/Instances/Concat.hs:282:26: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  1132. 1776.00 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  1133. 1776.00 s [monoid-subclasses] In an irrefutable pattern:
  1134. 1776.00 s [monoid-subclasses] Patterns of type ‘[Concat p]’ not matched: []
  1135. 1776.00 s [monoid-subclasses] |
  1136. 1776.00 s [monoid-subclasses] 282 | where splitNext a ~(xp:xs) =
  1137. 1776.00 s [monoid-subclasses] | ^^^^^^^
  1138. 1776.00 s [monoid-subclasses]
  1139. 1776.00 s [monoid-subclasses] [16 of 16] Compiling Data.Monoid.Instances.ByteString.UTF8 ( src/Data/Monoid/Instances/ByteString/UTF8.hs, dist/build/Data/Monoid/Instances/ByteString/UTF8.o, dist/build/Data/Monoid/Instances/ByteString/UTF8.dyn_o )
  1140. 1776.00 s [monoid-subclasses] src/Data/Monoid/Instances/ByteString/UTF8.hs:59:1: warning: [GHC-66111] [-Wunused-imports]
  1141. 1776.00 s [monoid-subclasses] The import of ‘Data.Semigroup’ is redundant
  1142. 1776.00 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup’
  1143. 1776.00 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup()
  1144. 1776.00 s [monoid-subclasses] |
  1145. 1776.00 s [monoid-subclasses] 59 | import Data.Semigroup (Semigroup(..))
  1146. 1776.00 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1147. 1776.00 s [monoid-subclasses]
  1148. 1776.00 s [monoid-subclasses] src/Data/Monoid/Instances/ByteString/UTF8.hs:60:1: warning: [GHC-66111] [-Wunused-imports]
  1149. 1776.00 s [monoid-subclasses] The import of ‘Data.Monoid’ is redundant
  1150. 1776.00 s [monoid-subclasses] except perhaps to import instances from ‘Data.Monoid’
  1151. 1776.00 s [monoid-subclasses] To import instances alone, use: import Data.Monoid()
  1152. 1776.00 s [monoid-subclasses] |
  1153. 1776.00 s [monoid-subclasses] 60 | import Data.Monoid (Monoid(..))
  1154. 1776.00 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1155. 1776.00 s [monoid-subclasses]
  1156. 1776.00 s [monoid-subclasses] [ 1 of 16] Compiling Data.Monoid.Null ( src/Data/Monoid/Null.hs, dist/build/Data/Monoid/Null.p_o )
  1157. 1776.00 s [monoid-subclasses] [ 2 of 16] Compiling Data.Semigroup.Cancellative ( src/Data/Semigroup/Cancellative.hs, dist/build/Data/Semigroup/Cancellative.p_o )
  1158. 1776.00 s [monoid-subclasses] [ 3 of 16] Compiling Data.Monoid.Monus ( src/Data/Monoid/Monus.hs, dist/build/Data/Monoid/Monus.p_o )
  1159. 1776.00 s [monoid-subclasses] src/Data/Monoid/Monus.hs:320:36: warning: [GHC-63394] [-Wx-partial]
  1160. 1776.00 s [monoid-subclasses] In the use of ‘tail’
  1161. 1776.00 s [monoid-subclasses] (imported from Prelude, but defined in GHC.Internal.List):
  1162. 1776.00 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  1163. 1776.00 s [monoid-subclasses] |
  1164. 1776.00 s [monoid-subclasses] 320 | | otherwise = go (tail x)
  1165. 1776.00 s [monoid-subclasses] | ^^^^
  1166. 1776.00 s [monoid-subclasses]
  1167. 1776.00 s [monoid-subclasses] src/Data/Monoid/Monus.hs:327:36: warning: [GHC-63394] [-Wx-partial]
  1168. 1776.00 s [monoid-subclasses] In the use of ‘tail’
  1169. 1776.00 s [monoid-subclasses] (imported from Prelude, but defined in GHC.Internal.List):
  1170. 1776.00 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  1171. 1776.00 s [monoid-subclasses] |
  1172. 1776.00 s [monoid-subclasses] 327 | | otherwise = go (tail x)
  1173. 1776.00 s [monoid-subclasses] | ^^^^
  1174. 1776.00 s [monoid-subclasses]
  1175. 1776.00 s [monoid-subclasses] [ 4 of 16] Compiling Data.Monoid.GCD ( src/Data/Monoid/GCD.hs, dist/build/Data/Monoid/GCD.p_o )
  1176. 1776.00 s [monoid-subclasses] src/Data/Monoid/GCD.hs:75:1: warning: [GHC-66111] [-Wunused-imports]
  1177. 1776.00 s [monoid-subclasses] The qualified import of ‘Data.Text.Encoding’ is redundant
  1178. 1776.00 s [monoid-subclasses] except perhaps to import instances from ‘Data.Text.Encoding’
  1179. 1776.00 s [parsers] [8 of 8] Compiling Text.Parser.Token.Style ( src/Text/Parser/Token/Style.hs, nothing )
  1180. 1776.00 s [parsers] Haddock coverage:
  1181. 1776.00 s [parsers] 100% ( 27 / 27) in 'Text.Parser.Combinators'
  1182. 1776.00 s [parsers] 95% ( 19 / 20) in 'Text.Parser.Char'
  1183. 1776.00 s [parsers] Missing documentation for:
  1184. 1776.00 s [parsers] satisfyRange (src/Text/Parser/Char.hs:172)
  1185. 1776.00 s [parsers] 100% ( 5 / 5) in 'Text.Parser.Expression'
  1186. 1776.00 s [parsers] 100% ( 3 / 3) in 'Text.Parser.LookAhead'
  1187. 1776.00 s [parsers] 100% ( 7 / 7) in 'Text.Parser.Permutation'
  1188. 1776.00 s [parsers] 100% ( 2 / 2) in 'Text.Parser.Token.Highlight'
  1189. 1776.00 s [parsers] Warning: 'float' is out of scope.
  1190. 1776.00 s [parsers] If you qualify the identifier, haddock can try to link it anyway.
  1191. 1776.00 s [parsers] Warning: 'IdentifierStyle' is ambiguous. It is defined
  1192. 1776.00 s [parsers] * at src/Text/Parser/Token.hs:488:26
  1193. 1776.00 s [parsers] * at src/Text/Parser/Token.hs:488:1
  1194. 1776.01 s [parsers] You may be able to disambiguate the identifier by qualifying it or
  1195. 1776.01 s [parsers] by specifying the type/value namespace explicitly.
  1196. 1776.01 s [parsers] Defaulting to the one defined at src/Text/Parser/Token.hs:488:1
  1197. 1776.01 s [parsers] 100% ( 55 / 55) in 'Text.Parser.Token'
  1198. 1776.01 s [parsers] Warning: 'CommentStyle' is ambiguous. It is defined
  1199. 1776.01 s [parsers] * at src/Text/Parser/Token/Style.hs:52:21
  1200. 1776.01 s [parsers] * at src/Text/Parser/Token/Style.hs:52:1
  1201. 1776.01 s [parsers] You may be able to disambiguate the identifier by qualifying it or
  1202. 1776.01 s [parsers] by specifying the type/value namespace explicitly.
  1203. 1776.01 s [parsers] Defaulting to the one defined at src/Text/Parser/Token/Style.hs:52:1
  1204. 1776.01 s [parsers] 100% ( 22 / 22) in 'Text.Parser.Token.Style'
  1205. 1776.01 s [parsers] Warning: Text.Parser.Combinators: could not find link destinations for:
  1206. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Chunk
  1207. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Parser
  1208. 1776.01 s [parsers] Warning: Text.Parser.Char: could not find link destinations for:
  1209. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Chunk
  1210. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Parser
  1211. 1776.01 s [parsers] Warning: Text.Parser.LookAhead: could not find link destinations for:
  1212. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Chunk
  1213. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Parser
  1214. 1776.01 s [parsers] Warning: Text.Parser.Token: could not find link destinations for:
  1215. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Chunk
  1216. 1776.01 s [parsers] - Data.Attoparsec.Internal.Types.Parser
  1217. 1776.01 s [parsers] Documentation created: dist/doc/html/parsers/,
  1218. 1776.01 s [parsers] dist/doc/html/parsers/parsers.txt
  1219. 1776.01 s [parsers] Preprocessing test suite 'quickcheck' for parsers-0.12.12...
  1220. 1776.01 s [parsers] Phase: installPhase
  1221. 1776.01 s [parsers] Installing library in /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/parsers-0.12.12-CjDZxH0hl5CJqyByYob8A4
  1222. 1776.01 s [parsers] Phase: fixupPhase
  1223. 1776.01 s [parsers] shrinking RPATHs of ELF executables and libraries in /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12
  1224. 1776.01 s [parsers] shrinking /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSparsers-0.12.12-CjDZxH0hl5CJqyByYob8A4-ghc9.10.2.so
  1225. 1776.01 s [parsers] checking for references to /build/ in /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12...
  1226. 1776.01 s [parsers] patching script interpreter paths in /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12
  1227. 1776.01 s [parsers] stripping (with command strip and flags -S -p) in /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12/lib
  1228. 1776.01 s [parsers] shrinking RPATHs of ELF executables and libraries in /nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc
  1229. 1776.01 s [parsers] checking for references to /build/ in /nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc...
  1230. 1776.01 s [parsers] patching script interpreter paths in /nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc
  1231. 1776.01 s [reducers] [ 1 of 14] Compiling Data.Semigroup.Instances ( src/Data/Semigroup/Instances.hs, nothing )
  1232. 1776.01 s [reducers] [ 2 of 14] Compiling Data.Semigroup.Reducer ( src/Data/Semigroup/Reducer.hs, nothing )
  1233. 1776.01 s [reducers] [ 3 of 14] Compiling Data.Semigroup.MonadPlus ( src/Data/Semigroup/MonadPlus.hs, nothing )
  1234. 1776.01 s [reducers] [ 4 of 14] Compiling Data.Semigroup.Monad ( src/Data/Semigroup/Monad.hs, nothing )
  1235. 1776.01 s [reducers] [ 5 of 14] Compiling Data.Semigroup.Apply ( src/Data/Semigroup/Apply.hs, nothing )
  1236. 1776.01 s [reducers] [ 6 of 14] Compiling Data.Semigroup.Applicative ( src/Data/Semigroup/Applicative.hs, nothing )
  1237. 1776.01 s [reducers] [ 7 of 14] Compiling Data.Semigroup.Alternative ( src/Data/Semigroup/Alternative.hs, nothing )
  1238. 1776.01 s [reducers] [ 8 of 14] Compiling Data.Semigroup.Alt ( src/Data/Semigroup/Alt.hs, nothing )
  1239. 1776.01 s [reducers] [ 9 of 14] Compiling Data.Generator ( src/Data/Generator.hs, nothing )
  1240. 1776.01 s [reducers] [10 of 14] Compiling Data.Semigroup.Generator ( src/Data/Semigroup/Generator.hs, nothing )
  1241. 1776.01 s [reducers] [11 of 14] Compiling Data.Generator.Combinators ( src/Data/Generator/Combinators.hs, nothing )
  1242. 1776.01 s [reducers] [12 of 14] Compiling Data.Semigroup.Reducer.With ( src/Data/Semigroup/Reducer/With.hs, nothing )
  1243. 1776.01 s [reducers] [13 of 14] Compiling Data.Semigroup.Self ( src/Data/Semigroup/Self.hs, nothing )
  1244. 1776.01 s [reducers] [14 of 14] Compiling Data.Semigroup.Union ( src/Data/Semigroup/Union.hs, nothing )
  1245. 1776.01 s [reducers] Haddock coverage:
  1246. 1776.01 s [reducers] 100% ( 1 / 1) in 'Data.Semigroup.Instances'
  1247. 1776.01 s [reducers] Warning: 'Generator' is out of scope.
  1248. 1776.01 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1249. 1776.01 s [reducers] 55% ( 5 / 9) in 'Data.Semigroup.Reducer'
  1250. 1776.01 s [reducers] Missing documentation for:
  1251. 1776.01 s [reducers] foldMapReduce1 (src/Data/Semigroup/Reducer.hs:88)
  1252. 1776.01 s [reducers] pureUnit (src/Data/Semigroup/Reducer.hs:102)
  1253. 1776.01 s [reducers] returnUnit (src/Data/Semigroup/Reducer.hs:99)
  1254. 1776.01 s [reducers] Count (src/Data/Semigroup/Reducer.hs:104)
  1255. 1776.01 s [reducers] Warning: 'MonadSum' is ambiguous. It is defined
  1256. 1776.01 s [reducers] * at src/Data/Semigroup/MonadPlus.hs:32:24
  1257. 1776.01 s [reducers] * at src/Data/Semigroup/MonadPlus.hs:32:1
  1258. 1776.01 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1259. 1776.01 s [reducers] by specifying the type/value namespace explicitly.
  1260. 1776.01 s [reducers] Defaulting to the one defined at src/Data/Semigroup/MonadPlus.hs:32:1
  1261. 1776.01 s [reducers] 100% ( 2 / 2) in 'Data.Semigroup.MonadPlus'
  1262. 1776.01 s [reducers] Warning: 'Action' is ambiguous. It is defined
  1263. 1776.01 s [reducers] * at src/Data/Semigroup/Monad.hs:34:20
  1264. 1776.01 s [reducers] * at src/Data/Semigroup/Monad.hs:34:1
  1265. 1776.01 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1266. 1776.01 s [reducers] by specifying the type/value namespace explicitly.
  1267. 1776.01 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Monad.hs:34:1
  1268. 1776.01 s [reducers] 66% ( 2 / 3) in 'Data.Semigroup.Monad'
  1269. 1776.01 s [reducers] Missing documentation for:
  1270. 1776.01 s [reducers] Mon (src/Data/Semigroup/Monad.hs:57)
  1271. 1776.01 s [reducers] Warning: 'App' is ambiguous. It is defined
  1272. 1776.01 s [reducers] * at src/Data/Semigroup/Apply.hs:53:19
  1273. 1776.01 s [reducers] * at src/Data/Semigroup/Apply.hs:53:1
  1274. 1776.01 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1275. 1776.01 s [reducers] by specifying the type/value namespace explicitly.
  1276. 1776.01 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Apply.hs:53:1
  1277. 1776.01 s [reducers] Warning: 'Trav' is ambiguous. It is defined
  1278. 1776.01 s [reducers] * at src/Data/Semigroup/Apply.hs:34:18
  1279. 1776.01 s [reducers] * at src/Data/Semigroup/Apply.hs:34:1
  1280. 1776.01 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1281. 1776.01 s [reducers] by specifying the type/value namespace explicitly.
  1282. 1776.01 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Apply.hs:34:1
  1283. 1776.01 s [reducers] Warning: 'traverse_' is out of scope.
  1284. 1776.01 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1285. 1776.01 s [reducers] 100% ( 3 / 3) in 'Data.Semigroup.Apply'
  1286. 1776.01 s [reducers] Warning: 'Traversal' is ambiguous. It is defined
  1287. 1776.01 s [reducers] * at src/Data/Semigroup/Applicative.hs:36:23
  1288. 1776.01 s [reducers] * at src/Data/Semigroup/Applicative.hs:36:1
  1289. 1776.01 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1290. 1776.01 s [reducers] by specifying the type/value namespace explicitly.
  1291. 1776.01 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Applicative.hs:36:1
  1292. 1776.01 s [reducers] Warning: 'traverse_' is out of scope.
  1293. 1776.01 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1294. 1776.01 s [reducers] 66% ( 2 / 3) in 'Data.Semigroup.Applicative'
  1295. 1776.01 s [reducers] Missing documentation for:
  1296. 1776.01 s [reducers] Ap (src/Data/Semigroup/Applicative.hs:59)
  1297. 1776.01 s [reducers] Warning: 'Alternate' is ambiguous. It is defined
  1298. 1776.01 s [reducers] * at src/Data/Semigroup/Alternative.hs:31:25
  1299. 1776.01 s [reducers] * at src/Data/Semigroup/Alternative.hs:31:1
  1300. 1776.01 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1301. 1776.01 s [string-interpolate] TmeTepmemlpmpalpltalaetat eteH e aH HsaHaksaseksklekellel llle l re errerorrrroro:ror :r:D : aD DtaDaatat.ataS.a.tS.SrtStirtrnirignin.gngI.g.nI.ItnInetntretepreroprplopoaloltalaetat.etei.e.:i.i :i:u : nu utnuneentrskemcnriaomnpwiaenntd ae etd#se cd#sa {ypb.mea.b c.ock}lhs aliwraniasttcheht roeepursot:cl aaicptn
  1302. 1776.01 s [string-interpolate] e terminates [✔]
  1303. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1304. 1776.01 s [string-interpolate] ii
  1305. 1776.01 s [string-interpolate] should allow an escaped backslash right before an interp [✔]
  1306. 1776.01 s [string-interpolate] should only escape verbatim segments a single time [✔]
  1307. 1776.01 s [string-interpolate] t oeanrt
  1308. 1776.01 s [string-interpolate] p oelation brackets
  1309. 1776.01 s [string-interpolate] nd of string
  1310. 1776.01 s [string-interpolate] should error on hanging # [✔]
  1311. 1776.01 s [string-interpolate] should error on unterminated backslash [✔]
  1312. 1776.01 s [string-interpolate] should error on unknown escape sequence [✔]
  1313. 1776.01 s [string-interpolate] should error on unclosed expression [✔]
  1314. 1776.01 s [string-interpolate] should parse TypeApplications [✔]
  1315. 1776.01 s [string-interpolate] should work with many interpolations [✔]
  1316. 1776.01 s [string-interpolate] when using String as a parameter
  1317. 1776.01 s [string-interpolate] just interpolating should be id [✔]
  1318. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1319. 1776.01 s [string-interpolate] should passthrough a conversion to strict Text and back unchanged [✔]
  1320. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1321. 1776.01 s [string-interpolate] should passthrough a conversion to lazy Text and back unchanged [✔]
  1322. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1323. 1776.01 s [string-interpolate] should passthrough a conversion to strict ByteString and back unchanged [✔]
  1324. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1325. 1776.01 s [string-interpolate] should passthrough a conversion to lazy ByteString and back unchanged [✔]
  1326. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1327. 1776.01 s [string-interpolate] when using strict Text as a parameter
  1328. 1776.01 s [string-interpolate] just interpolating should be id [✔]
  1329. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1330. 1776.01 s [string-interpolate] should passthrough a conversion to String and back unchanged [✔]
  1331. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1332. 1776.01 s [string-interpolate] should passthrough a conversion to lazy Text and back unchanged [✔]
  1333. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1334. 1776.01 s [string-interpolate] should passthrough a conversion to strict ByteString and back unchanged [✔]
  1335. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1336. 1776.01 s [string-interpolate] should passthrough a conversion to lazy ByteString and back unchanged [✔]
  1337. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1338. 1776.01 s [string-interpolate] when using lazy Text as a parameter
  1339. 1776.01 s [string-interpolate] just interpolating should be id [✔]
  1340. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1341. 1776.01 s [string-interpolate] should passthrough a conversion to String and back unchanged [✔]
  1342. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1343. 1776.01 s [string-interpolate] should passthrough a conversion to strict Text and back unchanged [✔]
  1344. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1345. 1776.01 s [string-interpolate] should passthrough a conversion to strict ByteString and back unchanged [✔]
  1346. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1347. 1776.01 s [string-interpolate] should passthrough a conversion to lazy ByteString and back unchanged [✔]
  1348. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1349. 1776.01 s [string-interpolate] when using strict ByteString as a parameter
  1350. 1776.01 s [string-interpolate] just interpolating should be id [✔]
  1351. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1352. 1776.01 s [string-interpolate] should passthrough a conversion to lazy ByteString and back unchanged [✔]
  1353. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1354. 1776.01 s [string-interpolate] and the ByteString is valid UTF8
  1355. 1776.01 s [string-interpolate] should passthrough a conversion to String and back unchanged [✔]
  1356. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1357. 1776.01 s [string-interpolate] should passthrough a conversion to strict Text and back unchanged [✔]
  1358. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1359. 1776.01 s [string-interpolate] should passthrough a conversion to lazy Text and back unchanged [✔]
  1360. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1361. 1776.01 s [string-interpolate] when using lazy ByteString as a parameter
  1362. 1776.01 s [string-interpolate] just interpolating should be id [✔]
  1363. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1364. 1776.01 s [string-interpolate] should passthrough a conversion to strict ByteString and back unchanged [✔]
  1365. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1366. 1776.01 s [string-interpolate] and the ByteString is valid UTF8
  1367. 1776.01 s [string-interpolate] should passthrough a conversion to String and back unchanged [✔]
  1368. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1369. 1776.01 s [string-interpolate] should passthrough a conversion to strict Text and back unchanged [✔]
  1370. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1371. 1776.01 s [string-interpolate] should passthrough a conversion to lazy Text and back unchanged [✔]
  1372. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1373. 1776.01 s [string-interpolate] when using Char as a parameter
  1374. 1776.01 s [string-interpolate] interpolating into a String shouldn't have quotes [✔]
  1375. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1376. 1776.01 s [string-interpolate] interpolating into strict Text shouldn't have quotes [✔]
  1377. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1378. 1776.01 s [string-interpolate] interpolating into lazy Text shouldn't have quotes [✔]
  1379. 1776.01 s [string-interpolate] +++ OK, passed 10000 tests.
  1380. 1776.01 s [string-interpolate] interpolating into strict ByteString shouldn't have quotes [✔]
  1381. 1776.01 s [text-iso8601] Documentation created: dist/doc/html/text-iso8601/,
  1382. 1776.01 s [text-iso8601] dist/doc/html/text-iso8601/text-iso8601.txt
  1383. 1776.01 s [text-iso8601] Preprocessing test suite 'text-iso8601-tests' for text-iso8601-0.1.1...
  1384. 1776.01 s [text-iso8601] Phase: installPhase
  1385. 1776.01 s [text-iso8601] Installing library in /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/text-iso8601-0.1.1-CzT74TFbJzV787BKgYhkKM
  1386. 1776.01 s [text-iso8601] Phase: fixupPhase
  1387. 1776.01 s [text-iso8601] shrinking RPATHs of ELF executables and libraries in /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1
  1388. 1776.01 s [text-iso8601] shrinking /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHStext-iso8601-0.1.1-CzT74TFbJzV787BKgYhkKM-ghc9.10.2.so
  1389. 1776.01 s [text-iso8601] checking for references to /build/ in /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1...
  1390. 1776.01 s [text-iso8601] patching script interpreter paths in /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1
  1391. 1776.01 s [text-iso8601] stripping (with command strip and flags -S -p) in /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1/lib
  1392. 1776.01 s [text-iso8601] shrinking RPATHs of ELF executables and libraries in /nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc
  1393. 1776.01 s [text-iso8601] checking for references to /build/ in /nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc...
  1394. 1776.01 s [text-iso8601] patching script interpreter paths in /nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc
  1395. 1776.07 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3 /nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc
  1396. 1777.19 s [post-build-hook] Pushing 2 paths (100 are already present) using zstd to cache sellout ⏳
  1397. 1777.19 s [post-build-hook]
  1398. 1777.88 s [post-build-hook] Pushing /nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc (453.64 KiB)
  1399. 1777.95 s [post-build-hook] Pushing /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3 (946.36 KiB)
  1400. 1779.38 s [post-build-hook]
  1401. 1779.38 s [post-build-hook] All done.
  1402. 1779.39 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3 /nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc
  1403. 1779.43 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1404. 1779.66 s [post-build-hook] copying 2 paths...
  1405. 1779.66 s [post-build-hook] copying path '/nix/store/pk46hzm5ra852gfasz6x3paxlhfsimsq-either-5.0.3-doc' to 'https://cache.nix-ci.com'...
  1406. 1779.88 s [post-build-hook] copying path '/nix/store/jz2aifj241ppac1k9masd02624idrk1c-either-5.0.3' to 'https://cache.nix-ci.com'...
  1407. 1780.27 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1408. 1780.46 s [post-build-hook] copying 1 paths...
  1409. 1780.46 s [post-build-hook] copying path '/nix/store/s7z806q48iqp6g62lwbvi9l4z60grgmv-either-5.0.3.drv' to 'https://cache.nix-ci.com'...
  1410. 1780.62 s [extra] listTest listContents ["bar.txt","foo/baz.txt","zoo"] ["bar.txt","foo","zoo"]
  1411. 1780.62 s [extra] +++ OK, passed 100 tests.
  1412. 1780.62 s [extra] listTest listDirectories ["bar.txt","foo/baz.txt","zoo"] ["foo"]
  1413. 1780.62 s [extra] +++ OK, passed 100 tests.
  1414. 1780.62 s [extra] listTest listFiles ["bar.txt","foo/baz.txt","zoo"] ["bar.txt","zoo"]
  1415. 1780.62 s [extra] +++ OK, passed 100 tests.
  1416. 1780.62 s [extra] listTest listFilesRecursive ["bar.txt","zoo","foo" </> "baz.txt"] ["bar.txt","zoo","foo" </> "baz.txt"]
  1417. 1780.62 s [extra] +++ OK, passed 100 tests.
  1418. 1780.62 s [extra] listTest (listFilesInside $ pure . not . isPrefixOf "." . takeFileName) ["bar.txt","foo" </> "baz.txt",".foo" </> "baz2.txt", "zoo"] ["bar.txt","zoo","foo" </> "baz.txt"]
  1419. 1780.62 s [extra] +++ OK, passed 100 tests.
  1420. 1780.62 s [extra] listTest (listFilesInside $ const $ pure False) ["bar.txt"] []
  1421. 1780.62 s [extra] +++ OK, passed 100 tests.
  1422. 1780.62 s [extra] isWindows == (os == "mingw32")
  1423. 1780.62 s [extra] +++ OK, passed 100 tests.
  1424. 1780.62 s [extra] \(filter isHexDigit -> s) -> fmap (== s) $ withTempFile $ \file -> do writeFile file s; readFile' file
  1425. 1780.62 s [extra] +++ OK, passed 100 tests.
  1426. 1780.62 s [extra] \s -> withTempFile $ \file -> do writeFileUTF8 file s; fmap (== s) $ readFileUTF8' file
  1427. 1780.62 s [extra] +++ OK, passed 100 tests.
  1428. 1780.62 s [extra] \(ASCIIString s) -> withTempFile $ \file -> do writeFileBinary file s; fmap (== s) $ readFileBinary' file
  1429. 1780.62 s [extra] +++ OK, passed 100 tests.
  1430. 1780.62 s [extra] captureOutput (print 1) == pure ("1\n",())
  1431. 1780.62 s [extra] +++ OK, passed 100 tests.
  1432. 1780.62 s [extra] withTempFile doesFileExist == pure True
  1433. 1780.62 s [extra] +++ OK, passed 100 tests.
  1434. 1780.62 s [extra] (doesFileExist =<< withTempFile pure) == pure False
  1435. 1780.62 s [extra] +++ OK, passed 100 tests.
  1436. 1780.62 s [extra] withTempFile readFile' == pure ""
  1437. 1780.62 s [extra] +++ OK, passed 100 tests.
  1438. 1780.62 s [extra] withTempDir doesDirectoryExist == pure True
  1439. 1780.62 s [extra] +++ OK, passed 100 tests.
  1440. 1780.62 s [extra] (doesDirectoryExist =<< withTempDir pure) == pure False
  1441. 1780.62 s [extra] +++ OK, passed 100 tests.
  1442. 1780.62 s [extra] withTempDir listFiles == pure []
  1443. 1780.62 s [extra] +++ OK, passed 100 tests.
  1444. 1780.62 s [extra] fileEq "does_not_exist1" "does_not_exist2" == undefined
  1445. 1780.62 s [extra] +++ OK, passed 100 tests.
  1446. 1780.62 s [extra] fileEq "does_not_exist" "does_not_exist" == undefined
  1447. 1780.62 s [extra] +++ OK, passed 100 tests.
  1448. 1780.62 s [extra] withTempFile $ \f1 -> fileEq "does_not_exist" f1 == undefined
  1449. 1780.62 s [extra] +++ OK, passed 100 tests.
  1450. 1780.62 s [extra] withTempFile $ \f1 -> withTempFile $ \f2 -> fileEq f1 f2
  1451. 1780.62 s [extra] +++ OK, passed 100 tests.
  1452. 1780.62 s [extra] withTempFile $ \f1 -> withTempFile $ \f2 -> writeFile f1 "a" >> writeFile f2 "a" >> fileEq f1 f2
  1453. 1780.62 s [extra] +++ OK, passed 100 tests.
  1454. 1780.62 s [extra] withTempFile $ \f1 -> withTempFile $ \f2 -> writeFile f1 "a" >> writeFile f2 "b" >> notM (fileEq f1 f2)
  1455. 1780.62 s [extra] +++ OK, passed 100 tests.
  1456. 1780.62 s [extra] fmap (round . fst) (duration $ sleep 1) == pure 1
  1457. 1780.62 s [extra] +++ OK, passed 100 tests.
  1458. 1780.62 s [extra] timeout (-3) (print 1) == pure Nothing
  1459. 1780.62 s [extra] +++ OK, passed 100 tests.
  1460. 1780.62 s [extra] timeout 0.1 (print 1) == fmap Just (print 1)
  1461. 1780.62 s [extra] +++ OK, passed 100 tests.
  1462. 1780.62 s [extra] do (t, _) <- duration $ timeout 0.1 $ sleep 1000; print t; pure $ t < 1
  1463. 1780.62 s [extra] 0.100257392
  1464. 1780.62 s [extra] +++ OK, passed 100 tests.
  1465. 1780.62 s [extra] timeout 0.1 (sleep 2 >> print 1) == pure Nothing
  1466. 1780.62 s [extra] +++ OK, passed 100 tests.
  1467. 1780.62 s [extra] showDuration 3.435 == "3.44s"
  1468. 1780.62 s [extra] +++ OK, passed 100 tests.
  1469. 1780.62 s [extra] showDuration 623.8 == "10m24s"
  1470. 1780.62 s [extra] +++ OK, passed 100 tests.
  1471. 1780.62 s [extra] showDuration 62003.8 == "17h13m"
  1472. 1780.62 s [extra] +++ OK, passed 100 tests.
  1473. 1780.62 s [extra] showDuration 1e8 == "27777h47m"
  1474. 1780.62 s [extra] +++ OK, passed 100 tests.
  1475. 1780.62 s [extra] do f <- offsetTime; xs <- replicateM 10 f; pure $ xs == sort xs
  1476. 1780.62 s [extra] +++ OK, passed 100 tests.
  1477. 1780.62 s [extra] do (a,_) <- duration $ sleep 1; pure $ a >= 1 && a <= 1.5
  1478. 1780.62 s [extra] +++ OK, passed 100 tests.
  1479. 1780.62 s [extra] Extra export
  1480. 1780.62 s [extra] +++ OK, passed 100 tests.
  1481. 1780.62 s [extra] withTempFile
  1482. 1780.62 s [extra] ....done
  1483. 1780.62 s [extra] withTempDir
  1484. 1780.62 s [extra] ....done
  1485. 1780.62 s [extra] retry
  1486. 1780.62 s [extra] +++ OK, passed 100 tests.
  1487. 1780.62 s [extra] barrier
  1488. 1780.62 s [extra] Success (325 tests)
  1489. 1780.62 s [extra] Test suite extra-test: PASS
  1490. 1780.62 s [extra] Test suite logged to: dist/test/extra-1.8.1-extra-test.log
  1491. 1780.62 s [extra] 1 of 1 test suites (1 of 1 test cases) passed.
  1492. 1780.62 s [extra] Phase: haddockPhase
  1493. 1780.62 s [extra] Preprocessing library for extra-1.8.1...
  1494. 1780.62 s [extra] Running Haddock on library for extra-1.8.1...
  1495. 1780.62 s [extra] [ 1 of 22] Compiling Data.IORef.Extra ( src/Data/IORef/Extra.hs, nothing )
  1496. 1780.62 s [extra] [ 2 of 22] Compiling Data.Monoid.Extra ( src/Data/Monoid/Extra.hs, nothing )
  1497. 1780.62 s [extra] [ 3 of 22] Compiling Data.Tuple.Extra ( src/Data/Tuple/Extra.hs, nothing )
  1498. 1780.62 s [extra] [ 4 of 22] Compiling Data.Typeable.Extra ( src/Data/Typeable/Extra.hs, nothing )
  1499. 1780.62 s [extra] [ 5 of 22] Compiling Numeric.Extra ( src/Numeric/Extra.hs, nothing )
  1500. 1780.62 s [extra] [ 6 of 22] Compiling Partial ( src/Partial.hs, nothing )
  1501. 1780.62 s [extra] [ 7 of 22] Compiling Data.List.Extra ( src/Data/List/Extra.hs, nothing )
  1502. 1780.62 s [extra] [ 8 of 22] Compiling Data.Version.Extra ( src/Data/Version/Extra.hs, nothing )
  1503. 1780.62 s [extra] [ 9 of 22] Compiling Data.List.NonEmpty.Extra ( src/Data/List/NonEmpty/Extra.hs, nothing )
  1504. 1780.62 s [free] * at src/Control/Alternative/Free/Final.hs:34:19
  1505. 1780.62 s [free] * at src/Control/Alternative/Free/Final.hs:34:1
  1506. 1780.62 s [free] You may be able to disambiguate the identifier by qualifying it or
  1507. 1780.62 s [free] by specifying the type/value namespace explicitly.
  1508. 1780.62 s [free] Defaulting to the one defined at src/Control/Alternative/Free/Final.hs:34:1
  1509. 1780.62 s [free] 100% ( 5 / 5) in 'Control.Alternative.Free.Final'
  1510. 1780.62 s [free] Warning: 'Ap' is ambiguous. It is defined
  1511. 1780.62 s [free] * at src/Control/Applicative/Free.hs:50:3
  1512. 1780.62 s [free] * at src/Control/Applicative/Free.hs:48:1
  1513. 1780.62 s [free] You may be able to disambiguate the identifier by qualifying it or
  1514. 1780.62 s [free] by specifying the type/value namespace explicitly.
  1515. 1780.62 s [free] Defaulting to the one defined at src/Control/Applicative/Free.hs:48:1
  1516. 1780.62 s [free] Warning: 'lift' is out of scope.
  1517. 1780.62 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1518. 1780.62 s [free] 100% ( 11 / 11) in 'Control.Applicative.Free'
  1519. 1780.62 s [free] Warning: 'f' is out of scope.
  1520. 1780.62 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1521. 1780.62 s [free] Warning: 'Ap' is ambiguous. It is defined
  1522. 1780.62 s [free] * at src/Control/Applicative/Free/Fast.hs:69:18
  1523. 1780.62 s [free] * at src/Control/Applicative/Free/Fast.hs:69:1
  1524. 1780.62 s [free] You may be able to disambiguate the identifier by qualifying it or
  1525. 1780.62 s [free] by specifying the type/value namespace explicitly.
  1526. 1780.62 s [free] Defaulting to the one defined at src/Control/Applicative/Free/Fast.hs:69:1
  1527. 1780.62 s [free] Warning: 'lift' is out of scope.
  1528. 1780.62 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1529. 1780.62 s [free] 100% ( 14 / 14) in 'Control.Applicative.Free.Fast'
  1530. 1780.62 s [free] Warning: 'Ap' is ambiguous. It is defined
  1531. 1780.62 s [free] * at src/Control/Applicative/Free/Final.hs:37:18
  1532. 1780.62 s [free] * at src/Control/Applicative/Free/Final.hs:37:1
  1533. 1780.62 s [free] You may be able to disambiguate the identifier by qualifying it or
  1534. 1780.62 s [free] by specifying the type/value namespace explicitly.
  1535. 1780.62 s [free] Defaulting to the one defined at src/Control/Applicative/Free/Final.hs:37:1
  1536. 1780.63 s [free] Warning: 'lift' is out of scope.
  1537. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1538. 1780.63 s [free] 100% ( 10 / 10) in 'Control.Applicative.Free.Final'
  1539. 1780.63 s [free] Warning: 'lift' is out of scope.
  1540. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1541. 1780.63 s [free] Warning: 'ApT' is ambiguous. It is defined
  1542. 1780.63 s [free] * at src/Control/Applicative/Trans/Free.hs:59:21
  1543. 1780.63 s [free] * at src/Control/Applicative/Trans/Free.hs:59:1
  1544. 1780.63 s [free] You may be able to disambiguate the identifier by qualifying it or
  1545. 1780.63 s [free] by specifying the type/value namespace explicitly.
  1546. 1780.63 s [free] Defaulting to the one defined at src/Control/Applicative/Trans/Free.hs:59:1
  1547. 1780.63 s [free] Warning: 'getSum' is out of scope.
  1548. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1549. 1780.63 s [free] Warning: 'Sum' is out of scope.
  1550. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1551. 1780.63 s [free] Warning: 'fold' is out of scope.
  1552. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1553. 1780.63 s [free] Warning: 'Ap' is ambiguous. It is defined
  1554. 1780.63 s [free] * at src/Control/Applicative/Trans/Free.hs:55:3
  1555. 1780.63 s [free] * at src/Control/Applicative/Trans/Free.hs:157:1
  1556. 1780.63 s [free] You may be able to disambiguate the identifier by qualifying it or
  1557. 1780.63 s [free] by specifying the type/value namespace explicitly.
  1558. 1780.63 s [free] Defaulting to the one defined at src/Control/Applicative/Trans/Free.hs:157:1
  1559. 1780.63 s [free] 100% ( 22 / 22) in 'Control.Applicative.Trans.Free'
  1560. 1780.63 s [free] 100% ( 2 / 2) in 'Control.Comonad.Cofree.Class'
  1561. 1780.63 s [free] Warning: 'cofree' is out of scope.
  1562. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1563. 1780.63 s [free] Warning: 'Const' is ambiguous. It is defined
  1564. 1780.63 s [free] * in ‘GHC.Internal.Data.Functor.Const’
  1565. 1780.63 s [free] * in ‘GHC.Internal.Data.Functor.Const’
  1566. 1780.63 s [free] You may be able to disambiguate the identifier by qualifying it or
  1567. 1780.63 s [free] by specifying the type/value namespace explicitly.
  1568. 1780.63 s [free] Defaulting to the one defined in ‘GHC.Internal.Data.Functor.Const’
  1569. 1780.63 s [free] Warning: 'Identity' is out of scope.
  1570. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1571. 1780.63 s [free] Warning: 'lens' is out of scope.
  1572. 1780.63 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1573. 1780.63 s [free] 93% ( 15 / 16) in 'Control.Comonad.Cofree'
  1574. 1780.63 s [free] Missing documentation for:
  1575. 1780.63 s [free] hoistCofree (src/Control/Comonad/Cofree.hs:136)
  1576. 1780.63 s [free] Warning: 'CofreeT' is ambiguous. It is defined
  1577. 1780.63 s [free] * at src/Control/Comonad/Trans/Cofree.hs:127:25
  1578. 1780.69 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2
  1579. 1781.75 s [post-build-hook] Pushing 2 paths (106 are already present) using zstd to cache sellout ⏳
  1580. 1781.75 s [post-build-hook]
  1581. 1782.37 s [post-build-hook] Pushing /nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc (187.47 KiB)
  1582. 1782.44 s [post-build-hook] Pushing /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2 (356.31 KiB)
  1583. 1784.04 s [post-build-hook]
  1584. 1784.04 s [post-build-hook] All done.
  1585. 1784.06 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc /nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2
  1586. 1784.10 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1587. 1784.25 s [post-build-hook] copying 2 paths...
  1588. 1784.25 s [post-build-hook] copying path '/nix/store/0zpm288jai98wgb7jasnazb1ywrz94yj-indexed-traversable-instances-0.1.2-doc' to 'https://cache.nix-ci.com'...
  1589. 1784.41 s [post-build-hook] copying path '/nix/store/zqd9lwmkc2796ac6d8805md45da2vzdp-indexed-traversable-instances-0.1.2' to 'https://cache.nix-ci.com'...
  1590. 1784.65 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1591. 1784.83 s [post-build-hook] copying 1 paths...
  1592. 1784.83 s [post-build-hook] copying path '/nix/store/88q7qhsfrna6f285c9fxw05x56s4w0w6-indexed-traversable-instances-0.1.2.drv' to 'https://cache.nix-ci.com'...
  1593. 1784.99 s [monoid-subclasses] To import instances alone, use: import Data.Text.Encoding()
  1594. 1784.99 s [monoid-subclasses] |
  1595. 1784.99 s [monoid-subclasses] 75 | import qualified Data.Text.Encoding as TextEncoding
  1596. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1597. 1784.99 s [monoid-subclasses]
  1598. 1784.99 s [monoid-subclasses] src/Data/Monoid/GCD.hs:83:1: warning: [GHC-66111] [-Wunused-imports]
  1599. 1784.99 s [monoid-subclasses] The qualified import of ‘Data.Text.Lazy.Encoding’ is redundant
  1600. 1784.99 s [monoid-subclasses] except perhaps to import instances from ‘Data.Text.Lazy.Encoding’
  1601. 1784.99 s [monoid-subclasses] To import instances alone, use: import Data.Text.Lazy.Encoding()
  1602. 1784.99 s [monoid-subclasses] |
  1603. 1784.99 s [monoid-subclasses] 83 | import qualified Data.Text.Lazy.Encoding as LazyEncoding
  1604. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1605. 1784.99 s [monoid-subclasses]
  1606. 1784.99 s [monoid-subclasses] src/Data/Monoid/GCD.hs:97:1: warning: [GHC-66111] [-Wunused-imports]
  1607. 1784.99 s [monoid-subclasses] The import of ‘Data.Maybe’ is redundant
  1608. 1784.99 s [monoid-subclasses] except perhaps to import instances from ‘Data.Maybe’
  1609. 1784.99 s [monoid-subclasses] To import instances alone, use: import Data.Maybe()
  1610. 1784.99 s [monoid-subclasses] |
  1611. 1784.99 s [monoid-subclasses] 97 | import Data.Maybe (isJust)
  1612. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  1613. 1784.99 s [monoid-subclasses]
  1614. 1784.99 s [monoid-subclasses] src/Data/Monoid/GCD.hs:211:13: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  1615. 1784.99 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  1616. 1784.99 s [monoid-subclasses] In a pattern binding:
  1617. 1784.99 s [monoid-subclasses] Patterns of type ‘Maybe m’ not matched: Nothing
  1618. 1784.99 s [monoid-subclasses] |
  1619. 1784.99 s [monoid-subclasses] 211 | Just x' = stripPrefix p x
  1620. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^
  1621. 1784.99 s [monoid-subclasses]
  1622. 1784.99 s [monoid-subclasses] src/Data/Monoid/GCD.hs:212:13: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  1623. 1784.99 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  1624. 1784.99 s [monoid-subclasses] In a pattern binding:
  1625. 1784.99 s [monoid-subclasses] Patterns of type ‘Maybe m’ not matched: Nothing
  1626. 1784.99 s [monoid-subclasses] |
  1627. 1784.99 s [monoid-subclasses] 212 | Just y' = stripPrefix p y
  1628. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^
  1629. 1784.99 s [monoid-subclasses]
  1630. 1784.99 s [monoid-subclasses] src/Data/Monoid/GCD.hs:274:13: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  1631. 1784.99 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  1632. 1784.99 s [monoid-subclasses] In a pattern binding:
  1633. 1784.99 s [monoid-subclasses] Patterns of type ‘Maybe m’ not matched: Nothing
  1634. 1784.99 s [monoid-subclasses] |
  1635. 1784.99 s [monoid-subclasses] 274 | Just x' = stripSuffix s x
  1636. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^
  1637. 1784.99 s [monoid-subclasses]
  1638. 1784.99 s [monoid-subclasses] src/Data/Monoid/GCD.hs:275:13: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  1639. 1784.99 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  1640. 1784.99 s [monoid-subclasses] In a pattern binding:
  1641. 1784.99 s [monoid-subclasses] Patterns of type ‘Maybe m’ not matched: Nothing
  1642. 1784.99 s [monoid-subclasses] |
  1643. 1784.99 s [monoid-subclasses] 275 | Just y' = stripSuffix s y
  1644. 1784.99 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^
  1645. 1784.99 s [monoid-subclasses]
  1646. 1784.99 s [monoid-subclasses] [ 5 of 16] Compiling Data.Monoid.LCM ( src/Data/Monoid/LCM.hs, dist/build/Data/Monoid/LCM.p_o )
  1647. 1784.99 s [monoid-subclasses] src/Data/Monoid/LCM.hs:37:1: warning: [GHC-66111] [-Wunused-imports]
  1648. 1784.99 s [monoid-subclasses] The import of ‘Data.Maybe’ is redundant
  1649. 1784.99 s [monoid-subclasses] except perhaps to import instances from ‘Data.Maybe’
  1650. 1784.99 s [monoid-subclasses] To import instances alone, use: import Data.Maybe()
  1651. 1784.99 s [monoid-subclasses] |
  1652. 1784.99 s [monoid-subclasses] 37 | import Data.Maybe (isJust)
  1653. 1785.07 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12
  1654. 1786.12 s [post-build-hook] Pushing 2 paths (83 are already present) using zstd to cache sellout ⏳
  1655. 1786.12 s [post-build-hook]
  1656. 1786.70 s [post-build-hook] Pushing /nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc (2.31 MiB)
  1657. 1786.81 s [post-build-hook] Pushing /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12 (8.68 MiB)
  1658. 1788.28 s [post-build-hook]
  1659. 1788.28 s [post-build-hook] All done.
  1660. 1788.30 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc /nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12
  1661. 1788.34 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1662. 1788.48 s [post-build-hook] copying 2 paths...
  1663. 1788.48 s [post-build-hook] copying path '/nix/store/fvffidb1wmrc00bqqgaj6ij4k2y0719l-parsers-0.12.12-doc' to 'https://cache.nix-ci.com'...
  1664. 1788.86 s [post-build-hook] copying path '/nix/store/r2y7ha7ms5wl24zpfhfkcsny48hgyacv-parsers-0.12.12' to 'https://cache.nix-ci.com'...
  1665. 1790.82 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1666. 1791.01 s [post-build-hook] copying 1 paths...
  1667. 1791.01 s [post-build-hook] copying path '/nix/store/jl5d28nj6w2z6790gfcr0vcq7mqilrpp-parsers-0.12.12.drv' to 'https://cache.nix-ci.com'...
  1668. 1791.14 s [reducers] by specifying the type/value namespace explicitly.
  1669. 1791.14 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Alternative.hs:31:1
  1670. 1791.14 s [reducers] 100% ( 2 / 2) in 'Data.Semigroup.Alternative'
  1671. 1791.14 s [reducers] Warning: 'Alter' is ambiguous. It is defined
  1672. 1791.14 s [reducers] * at src/Data/Semigroup/Alt.hs:31:21
  1673. 1791.14 s [reducers] * at src/Data/Semigroup/Alt.hs:31:1
  1674. 1791.14 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1675. 1791.14 s [reducers] by specifying the type/value namespace explicitly.
  1676. 1791.14 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Alt.hs:31:1
  1677. 1791.14 s [reducers] 100% ( 2 / 2) in 'Data.Semigroup.Alt'
  1678. 1791.14 s [reducers] Warning: 'ByteString' is out of scope.
  1679. 1791.14 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1680. 1791.14 s [reducers] Warning: 'UTF8' is out of scope.
  1681. 1791.14 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1682. 1791.14 s [reducers] 81% ( 9 / 11) in 'Data.Generator'
  1683. 1791.14 s [reducers] Missing documentation for:
  1684. 1791.14 s [reducers] mapReduceWith (src/Data/Generator.hs:201)
  1685. 1791.14 s [reducers] reduceWith (src/Data/Generator.hs:205)
  1686. 1791.14 s [reducers] 71% ( 5 / 7) in 'Data.Semigroup.Generator'
  1687. 1791.14 s [reducers] Missing documentation for:
  1688. 1791.14 s [reducers] mapReduceWith1 (src/Data/Semigroup/Generator.hs:67)
  1689. 1791.14 s [reducers] reduceWith1 (src/Data/Semigroup/Generator.hs:71)
  1690. 1791.14 s [reducers] Warning: 'Traversal' is ambiguous. It is defined
  1691. 1791.14 s [reducers] * at src/Data/Semigroup/Applicative.hs:36:23
  1692. 1791.14 s [reducers] * at src/Data/Semigroup/Applicative.hs:36:1
  1693. 1791.14 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1694. 1791.14 s [reducers] by specifying the type/value namespace explicitly.
  1695. 1791.14 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Applicative.hs:36:1
  1696. 1791.14 s [reducers] Warning: 'getAlt' is out of scope.
  1697. 1791.14 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1698. 1791.14 s [reducers] Warning: 'Action' is ambiguous. It is defined
  1699. 1791.14 s [reducers] * at src/Data/Semigroup/Monad.hs:34:20
  1700. 1791.14 s [reducers] * at src/Data/Semigroup/Monad.hs:34:1
  1701. 1791.14 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1702. 1791.14 s [reducers] by specifying the type/value namespace explicitly.
  1703. 1791.14 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Monad.hs:34:1
  1704. 1791.14 s [reducers] 100% ( 26 / 26) in 'Data.Generator.Combinators'
  1705. 1791.14 s [reducers] Warning: 'WithReducer' is ambiguous. It is defined
  1706. 1791.14 s [reducers] * at src/Data/Semigroup/Reducer/With.hs:29:27
  1707. 1791.14 s [reducers] * at src/Data/Semigroup/Reducer/With.hs:29:1
  1708. 1791.14 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1709. 1791.15 s [reducers] by specifying the type/value namespace explicitly.
  1710. 1791.15 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Reducer/With.hs:29:1
  1711. 1791.15 s [reducers] 100% ( 2 / 2) in 'Data.Semigroup.Reducer.With'
  1712. 1791.15 s [reducers] Warning: 'Self' is ambiguous. It is defined
  1713. 1791.15 s [reducers] * at src/Data/Semigroup/Self.hs:34:18
  1714. 1791.15 s [reducers] * at src/Data/Semigroup/Self.hs:34:1
  1715. 1791.15 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1716. 1791.15 s [reducers] by specifying the type/value namespace explicitly.
  1717. 1791.15 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Self.hs:34:1
  1718. 1791.15 s [reducers] Warning: 'reduce' is out of scope.
  1719. 1791.15 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1720. 1791.15 s [reducers] Warning: 'mapReduce' is out of scope.
  1721. 1791.15 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1722. 1791.15 s [reducers] Warning: 'fold' is out of scope.
  1723. 1791.15 s [reducers] If you qualify the identifier, haddock can try to link it anyway.
  1724. 1791.15 s [reducers] 50% ( 1 / 2) in 'Data.Semigroup.Self'
  1725. 1791.15 s [reducers] Missing documentation for:
  1726. 1791.15 s [reducers] Self (src/Data/Semigroup/Self.hs:34)
  1727. 1791.15 s [reducers] Warning: 'Union' is ambiguous. It is defined
  1728. 1791.15 s [reducers] * at src/Data/Semigroup/Union.hs:103:19
  1729. 1791.15 s [reducers] * at src/Data/Semigroup/Union.hs:103:1
  1730. 1791.15 s [reducers] You may be able to disambiguate the identifier by qualifying it or
  1731. 1791.15 s [reducers] by specifying the type/value namespace explicitly.
  1732. 1791.15 s [reducers] Defaulting to the one defined at src/Data/Semigroup/Union.hs:103:1
  1733. 1791.15 s [reducers] 70% ( 7 / 10) in 'Data.Semigroup.Union'
  1734. 1791.15 s [reducers] Missing documentation for:
  1735. 1791.15 s [reducers] Module header
  1736. 1791.15 s [reducers] HasUnion0 (src/Data/Semigroup/Union.hs:56)
  1737. 1791.15 s [reducers] HasUnionWith0 (src/Data/Semigroup/Union.hs:141)
  1738. 1791.15 s [reducers] Warning: Data.Generator: could not find link destinations for:
  1739. 1791.15 s [reducers] - Data.Generator.D:R:ElemArray
  1740. 1791.15 s [reducers] - Data.Generator.D:R:ElemHashMap
  1741. 1791.15 s [reducers] - Data.Generator.D:R:ElemMap
  1742. 1791.15 s [reducers] - Data.Generator.D:R:ElemIntMap
  1743. 1791.15 s [reducers] - Data.Generator.D:R:ElemSet
  1744. 1791.15 s [reducers] - Data.Generator.D:R:ElemHashSet
  1745. 1791.15 s [reducers] - Data.Generator.D:R:ElemIntSet
  1746. 1791.15 s [reducers] - Data.Generator.D:R:ElemSeq
  1747. 1791.15 s [reducers] - Data.Generator.D:R:ElemFingerTree
  1748. 1791.15 s [reducers] - Data.Generator.D:R:ElemNonEmpty
  1749. 1791.15 s [reducers] - Data.Generator.D:R:ElemList
  1750. 1791.15 s [reducers] - Data.Generator.D:R:ElemText
  1751. 1791.15 s [reducers] - Data.Generator.D:R:ElemByteString
  1752. 1791.15 s [string-interpolate] +++ OK, passed 10000 tests.
  1753. 1791.15 s [string-interpolate] interpolating into lazy ByteString shouldn't have quotes [✔]
  1754. 1791.15 s [string-interpolate] +++ OK, passed 10000 tests.
  1755. 1791.15 s [string-interpolate] when interpolating into strict ByteString
  1756. 1791.15 s [string-interpolate] should handle literal Unicode strings correctly [✔]
  1757. 1791.15 s [string-interpolate] when interpolating into lazy ByteString
  1758. 1791.15 s [string-interpolate] should handle literal Unicode strings correctly [✔]
  1759. 1791.15 s [string-interpolate] __i
  1760. 1791.15 s [string-interpolate] when there are newlines
  1761. 1791.15 s [string-interpolate] handles a small code snippet correctly/1 [✔]
  1762. 1791.15 s [string-interpolate] handles a small code snippet correctly/2 [✔]
  1763. 1791.15 s [string-interpolate] handles a small code snippet correctly/3 [✔]
  1764. 1791.15 s [string-interpolate] handles tabs [✔]
  1765. 1791.15 s [string-interpolate] __i'E
  1766. 1791.15 s [string-interpolate] when there are newlines
  1767. 1791.15 s [string-interpolate] handles a small code snippet correctly/1 [✔]
  1768. 1791.15 s [string-interpolate] handles a small code snippet correctly/2 [✔]
  1769. 1791.15 s [string-interpolate] handles a small code snippet correctly/3 [✔]
  1770. 1791.15 s [string-interpolate] __i'L
  1771. 1791.15 s [string-interpolate] when there are newlines
  1772. 1791.15 s [string-interpolate] handles a small code snippet correctly/1 [✔]
  1773. 1791.15 s [string-interpolate] handles a small code snippet correctly/2 [✔]
  1774. 1791.15 s [string-interpolate] handles a small code snippet correctly/3 [✔]
  1775. 1791.15 s [string-interpolate] iii
  1776. 1791.15 s [string-interpolate] when there is whitespace
  1777. 1791.15 s [string-interpolate] collapses a small example of whitespace [✔]
  1778. 1791.15 s [string-interpolate] collapses a small example of newlines [✔]
  1779. 1791.15 s [string-interpolate] iii'E
  1780. 1791.15 s [string-interpolate] when there is whitespace
  1781. 1791.15 s [string-interpolate] collapses a small example of whitespace [✔]
  1782. 1791.15 s [string-interpolate] collapses a small example of newlines [✔]
  1783. 1791.15 s [string-interpolate] iii'L
  1784. 1791.15 s [string-interpolate] when there is whitespace
  1785. 1791.15 s [string-interpolate] collapses a small example of whitespace [✔]
  1786. 1791.15 s [string-interpolate] collapses a small example of newlines [✔]
  1787. 1791.15 s [string-interpolate]
  1788. 1791.15 s [string-interpolate] Finished in 2.9835 seconds
  1789. 1791.15 s [string-interpolate] 57 examples, 0 failures
  1790. 1791.15 s [string-interpolate] Test suite string-interpolate-test: PASS
  1791. 1791.15 s [string-interpolate] Test suite logged to:
  1792. 1791.15 s [string-interpolate] dist/test/string-interpolate-0.3.4.0-string-interpolate-test.log
  1793. 1791.15 s [string-interpolate] 1 of 1 test suites (1 of 1 test cases) passed.
  1794. 1791.15 s [string-interpolate] Phase: haddockPhase
  1795. 1791.15 s [string-interpolate] Preprocessing library for string-interpolate-0.3.4.0...
  1796. 1791.15 s [string-interpolate] Running Haddock on library for string-interpolate-0.3.4.0...
  1797. 1791.15 s [string-interpolate] [ 1 of 11] Compiling Data.String.Interpolate.Conversion.Classes ( src/lib/Data/String/Interpolate/Conversion/Classes.hs, /build/ghc817_0/ghc_14.o, /build/ghc817_0/ghc_14.dyn_o )
  1798. 1791.15 s [string-interpolate] [ 2 of 11] Compiling Data.String.Interpolate.Conversion.Encoding ( src/lib/Data/String/Interpolate/Conversion/Encoding.hs, /build/ghc817_0/ghc_16.o, /build/ghc817_0/ghc_16.dyn_o )
  1799. 1791.15 s [string-interpolate] [ 3 of 11] Compiling Data.String.Interpolate.Conversion.ByteStringSink ( src/lib/Data/String/Interpolate/Conversion/ByteStringSink.hs, /build/ghc817_0/ghc_12.o, /build/ghc817_0/ghc_12.dyn_o )
  1800. 1791.15 s [string-interpolate] [ 4 of 11] Compiling Data.String.Interpolate.Conversion.TextSink ( src/lib/Data/String/Interpolate/Conversion/TextSink.hs, /build/ghc817_0/ghc_18.o, /build/ghc817_0/ghc_18.dyn_o )
  1801. 1791.15 s [string-interpolate] [ 5 of 11] Compiling Data.String.Interpolate.Conversion ( src/lib/Data/String/Interpolate/Conversion.hs, /build/ghc817_0/ghc_10.o, /build/ghc817_0/ghc_10.dyn_o )
  1802. 1791.15 s [string-interpolate] [ 6 of 11] Compiling Data.String.Interpolate.Types ( src/lib/Data/String/Interpolate/Types.hs, /build/ghc817_0/ghc_24.o, /build/ghc817_0/ghc_24.dyn_o )
  1803. 1791.15 s [string-interpolate] [ 7 of 11] Compiling Data.String.Interpolate.Lines ( src/lib/Data/String/Interpolate/Lines.hs, /build/ghc817_0/ghc_20.o, /build/ghc817_0/ghc_20.dyn_o )
  1804. 1791.15 s [string-interpolate] [ 8 of 11] Compiling Data.String.Interpolate.Parse ( src/lib/Data/String/Interpolate/Parse.hs, /build/ghc817_0/ghc_22.o, /build/ghc817_0/ghc_22.dyn_o )
  1805. 1791.15 s [string-interpolate] [ 9 of 11] Compiling Data.String.Interpolate.Whitespace ( src/lib/Data/String/Interpolate/Whitespace.hs, /build/ghc817_0/ghc_26.o, /build/ghc817_0/ghc_26.dyn_o )
  1806. 1791.15 s [string-interpolate] [10 of 11] Compiling Data.String.Interpolate ( src/lib/Data/String/Interpolate.hs, nothing )
  1807. 1791.15 s [string-interpolate] [11 of 11] Compiling Paths_string_interpolate ( dist/build/autogen/Paths_string_interpolate.hs, nothing )
  1808. 1791.15 s [string-interpolate] Haddock coverage:
  1809. 1791.15 s [string-interpolate] Warning: 'build' is out of scope.
  1810. 1791.15 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  1811. 1791.15 s [string-interpolate] Warning: 'interpolate' is out of scope.
  1812. 1791.15 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  1813. 1791.15 s [string-interpolate] Warning: 'charUtf8' is out of scope.
  1814. 1791.15 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  1815. 1791.15 s [string-interpolate] 0% ( 0 / 1) in 'Data.String.Interpolate.Conversion.ByteStringSink'
  1816. 1791.15 s [string-interpolate] Missing documentation for:
  1817. 1791.15 s [string-interpolate] Module header
  1818. 1791.15 s [string-interpolate] 0% ( 0 / 1) in 'Data.String.Interpolate.Conversion.TextSink'
  1819. 1791.15 s [string-interpolate] Missing documentation for:
  1820. 1791.15 s [string-interpolate] Module header
  1821. 1791.15 s [string-interpolate] 100% ( 8 / 8) in 'Data.String.Interpolate.Conversion'
  1822. 1791.15 s [string-interpolate] 0% ( 0 / 4) in 'Data.String.Interpolate.Types'
  1823. 1791.21 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1
  1824. 1791.93 s [post-build-hook] Pushing 2 paths (80 are already present) using zstd to cache sellout ⏳
  1825. 1791.93 s [post-build-hook]
  1826. 1792.43 s [post-build-hook] Pushing /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1 (3.09 MiB)
  1827. 1792.55 s [post-build-hook] Pushing /nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc (573.12 KiB)
  1828. 1793.70 s [post-build-hook]
  1829. 1793.73 s [post-build-hook] All done.
  1830. 1793.73 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc /nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1
  1831. 1793.75 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1832. 1793.89 s [post-build-hook] copying 2 paths...
  1833. 1793.89 s [post-build-hook] copying path '/nix/store/gbbp49q0s5hwypyqw17ifsqp0gbqakzr-text-iso8601-0.1.1-doc' to 'https://cache.nix-ci.com'...
  1834. 1794.07 s [post-build-hook] copying path '/nix/store/pagjrxh1p7qv1yz11npvsnc3m1ii0alg-text-iso8601-0.1.1' to 'https://cache.nix-ci.com'...
  1835. 1794.77 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  1836. 1794.95 s [post-build-hook] copying 1 paths...
  1837. 1794.95 s [post-build-hook] copying path '/nix/store/kksmhank9z5w9nkr1j7llfn3ma4nl0s9-text-iso8601-0.1.1.drv' to 'https://cache.nix-ci.com'...
  1838. 1795.14 s Building semialign
  1839. 1795.18 s Building witherable
  1840. 1795.18 s [extra] [10 of 22] Compiling Data.Either.Extra ( src/Data/Either/Extra.hs, nothing )
  1841. 1795.18 s [extra] [11 of 22] Compiling Control.Exception.Extra ( src/Control/Exception/Extra.hs, nothing )
  1842. 1795.18 s [extra] [12 of 22] Compiling Control.Monad.Extra ( src/Control/Monad/Extra.hs, nothing )
  1843. 1795.18 s [extra] [13 of 22] Compiling Data.Foldable.Extra ( src/Data/Foldable/Extra.hs, nothing )
  1844. 1795.18 s [extra] [14 of 22] Compiling Control.Concurrent.Extra ( src/Control/Concurrent/Extra.hs, nothing )
  1845. 1795.18 s [extra] [15 of 22] Compiling System.Directory.Extra ( src/System/Directory/Extra.hs, nothing )
  1846. 1795.18 s [extra] [16 of 22] Compiling System.Environment.Extra ( src/System/Environment/Extra.hs, nothing )
  1847. 1795.18 s [extra] [17 of 22] Compiling System.IO.Extra ( src/System/IO/Extra.hs, nothing )
  1848. 1795.18 s [extra] [18 of 22] Compiling System.Info.Extra ( src/System/Info/Extra.hs, nothing )
  1849. 1795.18 s [extra] [19 of 22] Compiling System.Process.Extra ( src/System/Process/Extra.hs, nothing )
  1850. 1795.18 s [extra] [20 of 22] Compiling System.Time.Extra ( src/System/Time/Extra.hs, nothing )
  1851. 1795.18 s [extra] [21 of 22] Compiling Extra ( src/Extra.hs, nothing )
  1852. 1795.18 s [extra] [22 of 22] Compiling Text.Read.Extra ( src/Text/Read/Extra.hs, nothing )
  1853. 1795.18 s [extra] Haddock coverage:
  1854. 1795.18 s [extra] 100% ( 6 / 6) in 'Data.IORef.Extra'
  1855. 1795.18 s [extra] 100% ( 4 / 4) in 'Data.Monoid.Extra'
  1856. 1795.18 s [extra] Warning: 'Arrow' is out of scope.
  1857. 1795.18 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  1858. 1795.18 s [extra] 100% ( 22 / 22) in 'Data.Tuple.Extra'
  1859. 1795.18 s [extra] 100% ( 2 / 2) in 'Data.Typeable.Extra'
  1860. 1795.18 s [extra] 100% ( 7 / 7) in 'Numeric.Extra'
  1861. 1795.18 s [extra] Warning: '(:)' is out of scope.
  1862. 1795.18 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  1863. 1795.18 s [extra] Warning: 'unzip' is ambiguous. It is defined
  1864. 1795.18 s [extra] * in ‘GHC.Internal.Data.Functor’
  1865. 1795.18 s [extra] * in ‘GHC.Internal.List’
  1866. 1795.18 s [extra] You may be able to disambiguate the identifier by qualifying it or
  1867. 1795.18 s [extra] by specifying the type/value namespace explicitly.
  1868. 1795.18 s [extra] Defaulting to the one defined in ‘GHC.Internal.List’
  1869. 1795.18 s [extra] Warning: 'firstJustM' is out of scope.
  1870. 1795.18 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  1871. 1795.18 s [extra] 100% ( 85 / 85) in 'Data.List.Extra'
  1872. 1795.18 s [extra] Warning: 'Version' is ambiguous. It is defined
  1873. 1795.18 s [extra] * in ‘GHC.Internal.Data.Version’
  1874. 1795.18 s [extra] * in ‘GHC.Internal.Data.Version’
  1875. 1795.18 s [extra] You may be able to disambiguate the identifier by qualifying it or
  1876. 1795.18 s [extra] by specifying the type/value namespace explicitly.
  1877. 1795.18 s [extra] Defaulting to the one defined in ‘GHC.Internal.Data.Version’
  1878. 1795.18 s [extra] 100% ( 3 / 3) in 'Data.Version.Extra'
  1879. 1795.18 s [extra] Warning: 'length' is ambiguous. It is defined
  1880. 1795.18 s [extra] * in ‘Data.List.NonEmpty’
  1881. 1795.18 s [extra] * in ‘GHC.Internal.Data.Foldable’
  1882. 1795.18 s [extra] You may be able to disambiguate the identifier by qualifying it or
  1883. 1795.18 s [extra] by specifying the type/value namespace explicitly.
  1884. 1795.18 s [extra] Defaulting to the one defined in ‘GHC.Internal.Data.Foldable’
  1885. 1795.18 s [extra] 100% ( 23 / 23) in 'Data.List.NonEmpty.Extra'
  1886. 1795.18 s [extra] Warning: 'fromJust' is out of scope.
  1887. 1795.18 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  1888. 1795.18 s [extra] 100% ( 11 / 11) in 'Data.Either.Extra'
  1889. 1795.18 s [extra] Warning: 'ErrorCall' is ambiguous. It is defined
  1890. 1795.18 s [extra] * in ‘GHC.Internal.Exception’
  1891. 1795.18 s [extra] * in ‘GHC.Internal.Exception’
  1892. 1795.18 s [extra] You may be able to disambiguate the identifier by qualifying it or
  1893. 1795.18 s [extra] by specifying the type/value namespace explicitly.
  1894. 1795.18 s [extra] Defaulting to the one defined in ‘GHC.Internal.Exception’
  1895. 1795.18 s [extra] Warning: 'AssertionFailed' is ambiguous. It is defined
  1896. 1795.18 s [extra] * in ‘GHC.Internal.IO.Exception’
  1897. 1795.18 s [extra] * in ‘GHC.Internal.IO.Exception’
  1898. 1795.18 s [extra] You may be able to disambiguate the identifier by qualifying it or
  1899. 1795.18 s [extra] by specifying the type/value namespace explicitly.
  1900. 1795.18 s [extra] Defaulting to the one defined in ‘GHC.Internal.IO.Exception’
  1901. 1795.18 s [extra] Warning: 'SomeException' is ambiguous. It is defined
  1902. 1795.18 s [extra] * in ‘GHC.Internal.Exception.Type’
  1903. 1795.18 s [extra] * in ‘GHC.Internal.Exception.Type’
  1904. 1795.18 s [extra] You may be able to disambiguate the identifier by qualifying it or
  1905. 1795.18 s [extra] by specifying the type/value namespace explicitly.
  1906. 1795.18 s [extra] Defaulting to the one defined in ‘GHC.Internal.Exception.Type’
  1907. 1795.18 s [extra] 100% ( 21 / 21) in 'Control.Exception.Extra'
  1908. 1795.18 s [extra] Warning: 'partition' is out of scope.
  1909. 1795.18 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  1910. 1795.18 s [extra] Warning: 'mconcatMap' is out of scope.
  1911. 1795.18 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  1912. 1795.18 s [extra] Warning: 'find' is out of scope.
  1913. 1795.18 s [foldl] Examples: 52 Tried: 52 Errors: 0 Failures: 0
  1914. 1795.18 s [foldl] Test suite doctest: PASS
  1915. 1795.18 s [foldl] Test suite logged to: dist/test/foldl-1.4.18-doctest.log
  1916. 1795.18 s [foldl] 1 of 1 test suites (1 of 1 test cases) passed.
  1917. 1795.18 s [foldl] Phase: haddockPhase
  1918. 1795.18 s [foldl] Preprocessing library for foldl-1.4.18...
  1919. 1795.18 s [foldl] Running Haddock on library for foldl-1.4.18...
  1920. 1795.18 s [foldl] Warning: The documentation for the following packages are not installed. No
  1921. 1795.18 s [foldl] links will be generated to these packages: vector-0.13.2.0
  1922. 1795.18 s [foldl] [1 of 9] Compiling Control.Foldl.Internal ( src/Control/Foldl/Internal.hs, nothing )
  1923. 1795.18 s [foldl] [2 of 9] Compiling Control.Foldl.Optics ( src/Control/Foldl/Optics.hs, nothing )
  1924. 1795.18 s [foldl] [3 of 9] Compiling Control.Foldl.Util.MVector ( src/Control/Foldl/Util/MVector.hs, nothing )
  1925. 1795.18 s [foldl] [4 of 9] Compiling Control.Foldl.Util.Vector ( src/Control/Foldl/Util/Vector.hs, nothing )
  1926. 1795.18 s [foldl] [5 of 9] Compiling Control.Foldl ( src/Control/Foldl.hs, nothing )
  1927. 1795.18 s [foldl] [6 of 9] Compiling Control.Foldl.Text ( src/Control/Foldl/Text.hs, nothing )
  1928. 1795.18 s [foldl] [7 of 9] Compiling Control.Foldl.NonEmpty ( src/Control/Foldl/NonEmpty.hs, nothing )
  1929. 1795.18 s [foldl] src/Control/Foldl/NonEmpty.hs:64:29: warning: [GHC-38856] [-Wunused-imports]
  1930. 1795.18 s [foldl] The import of ‘liftA2’
  1931. 1795.18 s [foldl] from module ‘Control.Applicative’ is redundant
  1932. 1795.18 s [foldl] |
  1933. 1795.18 s [foldl] 64 | import Control.Applicative (liftA2, Const(..))
  1934. 1795.18 s [foldl] | ^^^^^^
  1935. 1795.18 s [foldl]
  1936. 1795.18 s [foldl] [8 of 9] Compiling Control.Foldl.ByteString ( src/Control/Foldl/ByteString.hs, nothing )
  1937. 1795.18 s [foldl] [9 of 9] Compiling Control.Scanl ( src/Control/Scanl.hs, nothing )
  1938. 1795.18 s [foldl] Haddock coverage:
  1939. 1795.18 s [foldl] Warning: 'Fold' is ambiguous. It is defined
  1940. 1795.18 s [foldl] * at src/Control/Foldl.hs:239:5
  1941. 1795.18 s [foldl] * at src/Control/Foldl.hs:237:1
  1942. 1795.18 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  1943. 1795.18 s [foldl] by specifying the type/value namespace explicitly.
  1944. 1795.18 s [foldl] Defaulting to the one defined at src/Control/Foldl.hs:237:1
  1945. 1795.18 s [foldl] Warning: 'FoldM' is ambiguous. It is defined
  1946. 1795.18 s [foldl] * at src/Control/Foldl.hs:407:3
  1947. 1795.18 s [foldl] * at src/Control/Foldl.hs:405:1
  1948. 1795.18 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  1949. 1795.18 s [foldl] by specifying the type/value namespace explicitly.
  1950. 1795.18 s [foldl] Defaulting to the one defined at src/Control/Foldl.hs:405:1
  1951. 1795.18 s [foldl] Warning: 'lift' is out of scope.
  1952. 1795.18 s [foldl] If you qualify the identifier, haddock can try to link it anyway.
  1953. 1795.18 s [foldl] Warning: 'liftIO' is out of scope.
  1954. 1795.18 s [foldl] If you qualify the identifier, haddock can try to link it anyway.
  1955. 1795.18 s [foldl] Warning: 'None' is out of scope.
  1956. 1795.18 s [foldl] If you qualify the identifier, haddock can try to link it anyway.
  1957. 1795.18 s [foldl] Warning: Control.Foldl: Could not find documentation for exported module: Data.Vector.Generic
  1958. 1795.18 s [foldl] Warning: Control.Foldl: Couldn't find .haddock for export Vector
  1959. 1795.18 s [foldl] Warning: Control.Foldl: Couldn't find .haddock for export Mutable
  1960. 1795.18 s [foldl] 97% ( 97 / 99) in 'Control.Foldl'
  1961. 1795.18 s [foldl] Missing documentation for:
  1962. 1795.18 s [foldl] Vector
  1963. 1795.18 s [foldl] Mutable
  1964. 1795.18 s [foldl] 100% ( 27 / 27) in 'Control.Foldl.Text'
  1965. 1795.18 s [foldl] Warning: 'Fold1' is ambiguous. It is defined
  1966. 1795.18 s [foldl] * at src/Control/Foldl/NonEmpty.hs:102:18
  1967. 1795.18 s [foldl] * at src/Control/Foldl/NonEmpty.hs:102:1
  1968. 1795.18 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  1969. 1795.18 s [foldl] by specifying the type/value namespace explicitly.
  1970. 1795.18 s [foldl] Defaulting to the one defined at src/Control/Foldl/NonEmpty.hs:102:1
  1971. 1795.18 s [foldl] Warning: 'Fold' is ambiguous. It is defined
  1972. 1795.18 s [foldl] * at src/Control/Foldl.hs:239:5
  1973. 1795.18 s [foldl] * at src/Control/Foldl.hs:237:1
  1974. 1795.18 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  1975. 1795.18 s [foldl] by specifying the type/value namespace explicitly.
  1976. 1795.18 s [foldl] Defaulting to the one defined at src/Control/Foldl.hs:237:1
  1977. 1795.18 s [foldl] Warning: 'fold1' is ambiguous. It is defined
  1978. 1795.18 s [foldl] * in ‘Data.Foldable1’
  1979. 1795.18 s [foldl] * at src/Control/Foldl/NonEmpty.hs:302:1
  1980. 1795.18 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  1981. 1795.18 s [foldl] by specifying the type/value namespace explicitly.
  1982. 1795.18 s [foldl] Defaulting to the one defined at src/Control/Foldl/NonEmpty.hs:302:1
  1983. 1795.18 s [foldl] 100% ( 28 / 28) in 'Control.Foldl.NonEmpty'
  1984. 1795.18 s [foldl] 100% ( 28 / 28) in 'Control.Foldl.ByteString'
  1985. 1795.18 s [free] * at src/Control/Comonad/Trans/Cofree.hs:127:1
  1986. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  1987. 1795.18 s [free] by specifying the type/value namespace explicitly.
  1988. 1795.18 s [free] Defaulting to the one defined at src/Control/Comonad/Trans/Cofree.hs:127:1
  1989. 1795.18 s [free] 100% ( 11 / 11) in 'Control.Comonad.Trans.Cofree'
  1990. 1795.18 s [free] Warning: 'CoiterT' is ambiguous. It is defined
  1991. 1795.18 s [free] * at src/Control/Comonad/Trans/Coiter.hs:65:23
  1992. 1795.18 s [free] * at src/Control/Comonad/Trans/Coiter.hs:65:1
  1993. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  1994. 1795.18 s [free] by specifying the type/value namespace explicitly.
  1995. 1795.18 s [free] Defaulting to the one defined at src/Control/Comonad/Trans/Coiter.hs:65:1
  1996. 1795.18 s [free] 100% ( 14 / 14) in 'Control.Comonad.Trans.Coiter'
  1997. 1795.18 s [free] Warning: 'Tree' is out of scope.
  1998. 1795.18 s [free] If you qualify the identifier, haddock can try to link it anyway.
  1999. 1795.18 s [free] 100% ( 4 / 4) in 'Control.Monad.Free.Class'
  2000. 1795.18 s [free] 100% ( 10 / 10) in 'Control.Monad.Free.TH'
  2001. 1795.18 s [free] Warning: 'FreeT' is ambiguous. It is defined
  2002. 1795.18 s [free] * at src/Control/Monad/Trans/Free.hs:150:23
  2003. 1795.18 s [free] * at src/Control/Monad/Trans/Free.hs:150:1
  2004. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2005. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2006. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free.hs:150:1
  2007. 1795.18 s [free] Warning: 'Free' is ambiguous. It is defined
  2008. 1795.18 s [free] * at src/Control/Monad/Trans/Free.hs:77:29
  2009. 1795.18 s [free] * at src/Control/Monad/Trans/Free.hs:153:1
  2010. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2011. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2012. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free.hs:153:1
  2013. 1795.18 s [free] 100% ( 28 / 28) in 'Control.Monad.Trans.Free'
  2014. 1795.18 s [free] Warning: 'Free' is ambiguous. It is defined
  2015. 1795.18 s [free] * at src/Control/Monad/Free.hs:117:26
  2016. 1795.18 s [free] * at src/Control/Monad/Free.hs:117:1
  2017. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2018. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2019. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Free.hs:117:1
  2020. 1795.18 s [free] 100% ( 16 / 16) in 'Control.Monad.Free'
  2021. 1795.18 s [free] Warning: 'Free' is ambiguous. It is defined
  2022. 1795.18 s [free] * at src/Control/Monad/Free.hs:117:26
  2023. 1795.18 s [free] * at src/Control/Monad/Free.hs:117:1
  2024. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2025. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2026. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Free.hs:117:1
  2027. 1795.18 s [free] Warning: 'F' is ambiguous. It is defined
  2028. 1795.18 s [free] * at src/Control/Monad/Free/Church.hs:89:17
  2029. 1795.18 s [free] * at src/Control/Monad/Free/Church.hs:89:1
  2030. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2031. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2032. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Free/Church.hs:89:1
  2033. 1795.18 s [free] 100% ( 13 / 13) in 'Control.Monad.Free.Church'
  2034. 1795.18 s [free] Warning: 'FreeT' is ambiguous. It is defined
  2035. 1795.18 s [free] * at src/Control/Monad/Trans/Free/Ap.hs:140:23
  2036. 1795.18 s [free] * at src/Control/Monad/Trans/Free/Ap.hs:140:1
  2037. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2038. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2039. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free/Ap.hs:140:1
  2040. 1795.18 s [free] Warning: 'Identity' is ambiguous. It is defined
  2041. 1795.18 s [free] * in ‘GHC.Internal.Data.Functor.Identity’
  2042. 1795.18 s [free] * in ‘GHC.Internal.Data.Functor.Identity’
  2043. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2044. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2045. 1795.18 s [free] Defaulting to the one defined in ‘GHC.Internal.Data.Functor.Identity’
  2046. 1795.18 s [free] Warning: 'Free' is ambiguous. It is defined
  2047. 1795.18 s [free] * at src/Control/Monad/Trans/Free/Ap.hs:67:29
  2048. 1795.18 s [free] * at src/Control/Monad/Trans/Free/Ap.hs:143:1
  2049. 1795.18 s [free] You may be able to disambiguate the identifier by qualifying it or
  2050. 1795.18 s [free] by specifying the type/value namespace explicitly.
  2051. 1795.18 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free/Ap.hs:143:1
  2052. 1795.18 s [free] 100% ( 27 / 27) in 'Control.Monad.Trans.Free.Ap'
  2053. 1795.18 s [free] Warning: '(\<*\>)' is out of scope.
  2054. 1795.18 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2055. 1795.18 s [free] Warning: 'ap' is out of scope.
  2056. 1795.18 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2057. 1795.18 s [free] Warning: 'Identity' is out of scope.
  2058. 1795.18 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2059. 1795.18 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^
  2060. 1795.18 s [monoid-subclasses]
  2061. 1795.18 s [monoid-subclasses] src/Data/Monoid/LCM.hs:38:1: warning: [GHC-66111] [-Wunused-imports]
  2062. 1795.18 s [monoid-subclasses] The import of ‘Data.Semigroup.Cancellative’ is redundant
  2063. 1795.18 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup.Cancellative’
  2064. 1795.18 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup.Cancellative()
  2065. 1795.18 s [monoid-subclasses] |
  2066. 1795.18 s [monoid-subclasses] 38 | import Data.Semigroup.Cancellative (Reductive ((</>)))
  2067. 1795.18 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2068. 1795.18 s [monoid-subclasses]
  2069. 1795.18 s [monoid-subclasses] src/Data/Monoid/LCM.hs:39:1: warning: [GHC-66111] [-Wunused-imports]
  2070. 1795.18 s [monoid-subclasses] The import of ‘Data.Semigroup.Commutative’ is redundant
  2071. 1795.18 s [monoid-subclasses] except perhaps to import instances from ‘Data.Semigroup.Commutative’
  2072. 1795.18 s [monoid-subclasses] To import instances alone, use: import Data.Semigroup.Commutative()
  2073. 1795.18 s [monoid-subclasses] |
  2074. 1795.19 s [monoid-subclasses] 39 | import Data.Semigroup.Commutative (Commutative)
  2075. 1795.19 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2076. 1795.19 s [monoid-subclasses]
  2077. 1795.19 s [monoid-subclasses] [ 6 of 16] Compiling Data.Monoid.Cancellative ( src/Data/Monoid/Cancellative.hs, dist/build/Data/Monoid/Cancellative.p_o )
  2078. 1795.19 s [monoid-subclasses] src/Data/Monoid/Cancellative.hs:38:1: warning: [GHC-66111] [-Wunused-imports]
  2079. 1795.19 s [monoid-subclasses] The import of ‘Data.Monoid’ is redundant
  2080. 1795.19 s [monoid-subclasses] except perhaps to import instances from ‘Data.Monoid’
  2081. 1795.19 s [monoid-subclasses] To import instances alone, use: import Data.Monoid()
  2082. 1795.19 s [monoid-subclasses] |
  2083. 1795.19 s [monoid-subclasses] 38 | import Data.Monoid (Monoid)
  2084. 1795.19 s [monoid-subclasses] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2085. 1795.19 s [monoid-subclasses]
  2086. 1795.19 s [monoid-subclasses] [ 7 of 16] Compiling Data.Semigroup.Factorial ( src/Data/Semigroup/Factorial.hs, dist/build/Data/Semigroup/Factorial.p_o )
  2087. 1795.19 s [monoid-subclasses] [ 8 of 16] Compiling Data.Monoid.Factorial ( src/Data/Monoid/Factorial.hs, dist/build/Data/Monoid/Factorial.p_o )
  2088. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:208:77: warning: [GHC-63394] [-Wx-partial]
  2089. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2090. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2091. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2092. 1795.19 s [monoid-subclasses] |
  2093. 1795.19 s [monoid-subclasses] 208 | inits (a, b) = List.map (flip (,) mempty) (inits a) ++ List.map ((,) a) (List.tail $ inits b)
  2094. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2095. 1795.19 s [monoid-subclasses]
  2096. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:209:77: warning: [GHC-63394] [-Wx-partial]
  2097. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2098. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2099. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2100. 1795.19 s [monoid-subclasses] |
  2101. 1795.19 s [monoid-subclasses] 209 | tails (a, b) = List.map (flip (,) b) (tails a) ++ List.map ((,) mempty) (List.tail $ tails b)
  2102. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2103. 1795.19 s [monoid-subclasses]
  2104. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:225:25: warning: [GHC-62161] [-Wincomplete-uni-patterns]
  2105. 1795.19 s [monoid-subclasses] Pattern match(es) are non-exhaustive
  2106. 1795.19 s [reducers] - Data.Generator.D:R:ElemByteString0
  2107. 1795.19 s [reducers] - Data.Generator.D:R:ElemKeys
  2108. 1795.19 s [reducers] - Data.Generator.D:R:ElemKeys0
  2109. 1795.19 s [reducers] - Data.Generator.D:R:ElemKeys1
  2110. 1795.19 s [reducers] - Data.Generator.D:R:ElemValues
  2111. 1795.19 s [reducers] - Data.Generator.D:R:ElemValues0
  2112. 1795.19 s [reducers] - Data.Generator.D:R:ElemValues1
  2113. 1795.19 s [reducers] - Data.Generator.D:R:ElemChar8
  2114. 1795.19 s [reducers] - Data.Generator.D:R:ElemChar80
  2115. 1795.19 s [reducers] Documentation created: dist/doc/html/reducers/,
  2116. 1795.19 s [reducers] dist/doc/html/reducers/reducers.txt
  2117. 1795.19 s [reducers] Phase: installPhase
  2118. 1795.19 s [reducers] Installing library in /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/reducers-3.12.5-E5FWFKONWwPDm014iaH4sB
  2119. 1795.19 s [reducers] Phase: fixupPhase
  2120. 1795.19 s [reducers] shrinking RPATHs of ELF executables and libraries in /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5
  2121. 1795.19 s [reducers] shrinking /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSreducers-3.12.5-E5FWFKONWwPDm014iaH4sB-ghc9.10.2.so
  2122. 1795.19 s [reducers] checking for references to /build/ in /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5...
  2123. 1795.19 s [reducers] patching script interpreter paths in /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5
  2124. 1795.19 s [reducers] stripping (with command strip and flags -S -p) in /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5/lib
  2125. 1795.19 s [reducers] shrinking RPATHs of ELF executables and libraries in /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc
  2126. 1795.19 s [reducers] checking for references to /build/ in /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc...
  2127. 1795.19 s [reducers] patching script interpreter paths in /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc
  2128. 1795.19 s [string-interpolate] Missing documentation for:
  2129. 1795.19 s [string-interpolate] Module header
  2130. 1795.19 s [string-interpolate] InterpSegment (src/lib/Data/String/Interpolate/Types.hs:7)
  2131. 1795.19 s [string-interpolate] Line (src/lib/Data/String/Interpolate/Types.hs:14)
  2132. 1795.19 s [string-interpolate] Lines (src/lib/Data/String/Interpolate/Types.hs:15)
  2133. 1795.19 s [string-interpolate] Warning: 'Line' is out of scope.
  2134. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2135. 1795.19 s [string-interpolate] Warning: 'parseInterpSegments' is out of scope.
  2136. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2137. 1795.19 s [string-interpolate] 80% ( 4 / 5) in 'Data.String.Interpolate.Parse'
  2138. 1795.19 s [string-interpolate] Missing documentation for:
  2139. 1795.19 s [string-interpolate] dosToUnix (src/lib/Data/String/Interpolate/Parse.hs:110)
  2140. 1795.19 s [string-interpolate] Warning: 'i' is out of scope.
  2141. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2142. 1795.19 s [string-interpolate] Warning: '__i' is out of scope.
  2143. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2144. 1795.19 s [string-interpolate] Warning: 'iii' is out of scope.
  2145. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2146. 1795.19 s [string-interpolate] Warning: 'IsString' is out of scope.
  2147. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2148. 1795.19 s [string-interpolate] Warning: 'Show' is out of scope.
  2149. 1795.19 s [string-interpolate] If you qualify the identifier, haddock can try to link it anyway.
  2150. 1795.19 s [string-interpolate] 100% ( 10 / 10) in 'Data.String.Interpolate'
  2151. 1795.19 s [string-interpolate] Warning: Data.String.Interpolate.Conversion.ByteStringSink: could not find link destinations for:
  2152. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.Classes.B
  2153. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.ByteStringSink.D:R:BuilderTrueBuilder
  2154. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.ByteStringSink.D:R:BuilderTrueByteString
  2155. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.ByteStringSink.D:R:BuilderTrueByteString0
  2156. 1795.19 s [string-interpolate] Warning: Data.String.Interpolate.Conversion.TextSink: could not find link destinations for:
  2157. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.Classes.B
  2158. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.TextSink.D:R:BuilderTrueBuilder
  2159. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.TextSink.D:R:BuilderTrueText
  2160. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.TextSink.D:R:BuilderTrueText0
  2161. 1795.19 s [string-interpolate] Warning: Data.String.Interpolate.Conversion: could not find link destinations for:
  2162. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.Classes.B
  2163. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.ByteStringSink.D:R:BuilderTrueBuilder
  2164. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.ByteStringSink.D:R:BuilderTrueByteString
  2165. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.ByteStringSink.D:R:BuilderTrueByteString0
  2166. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.TextSink.D:R:BuilderTrueBuilder
  2167. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.TextSink.D:R:BuilderTrueText
  2168. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.TextSink.D:R:BuilderTrueText0
  2169. 1795.19 s [string-interpolate] - Data.String.Interpolate.Conversion.D:R:BuilderFalsestr
  2170. 1795.19 s [string-interpolate] Documentation created: dist/doc/html/string-interpolate/,
  2171. 1795.19 s [string-interpolate] dist/doc/html/string-interpolate/string-interpolate.txt
  2172. 1795.19 s [string-interpolate] Preprocessing test suite 'string-interpolate-test' for string-interpolate-0.3.4.0...
  2173. 1795.19 s [string-interpolate] Phase: installPhase
  2174. 1795.19 s [string-interpolate] Installing library in /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/string-interpolate-0.3.4.0-Hi2rqrKAbjhAsTMjw6QQr4
  2175. 1795.19 s [string-interpolate] Phase: fixupPhase
  2176. 1795.19 s [string-interpolate] shrinking RPATHs of ELF executables and libraries in /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0
  2177. 1795.19 s [string-interpolate] shrinking /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSstring-interpolate-0.3.4.0-Hi2rqrKAbjhAsTMjw6QQr4-ghc9.10.2.so
  2178. 1795.19 s [string-interpolate] checking for references to /build/ in /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0...
  2179. 1795.19 s [string-interpolate] patching script interpreter paths in /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0
  2180. 1795.19 s [string-interpolate] stripping (with command strip and flags -S -p) in /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0/lib
  2181. 1795.19 s [string-interpolate] shrinking RPATHs of ELF executables and libraries in /nix/store/f07lxl3va919wcxcigr3iyr3d2iavrs7-string-interpolate-0.3.4.0-doc
  2182. 1795.19 s [string-interpolate] checking for references to /build/ in /nix/store/f07lxl3va919wcxcigr3iyr3d2iavrs7-string-interpolate-0.3.4.0-doc...
  2183. 1795.19 s [string-interpolate] patching script interpreter paths in /nix/store/f07lxl3va919wcxcigr3iyr3d2iavrs7-string-interpolate-0.3.4.0-doc
  2184. 1795.19 s [trial-tomland] Phase: setupCompilerEnvironmentPhase
  2185. 1795.19 s [trial-tomland] Build with /nix/store/0qjf2c7a7d43aaks6prhwrxwb9z33fj2-ghc-9.10.2.
  2186. 1795.19 s [trial-tomland] Phase: unpackPhase
  2187. 1795.19 s [trial-tomland] unpacking source archive /nix/store/m3ywwybp74rrv72mll20xj4z6lm8996x-trial-tomland-0.0.0.0.tar.gz
  2188. 1795.19 s [trial-tomland] source root is trial-tomland-0.0.0.0
  2189. 1795.19 s [trial-tomland] setting SOURCE_DATE_EPOCH to timestamp 1000000000 of file "trial-tomland-0.0.0.0/trial-tomland.cabal"
  2190. 1795.19 s [trial-tomland] Phase: patchPhase
  2191. 1795.19 s [trial-tomland] Replace Cabal file with edited version from mirror://hackage/trial-tomland-0.0.0.0/revision/5.cabal.
  2192. 1795.19 s [trial-tomland] Phase: compileBuildDriverPhase
  2193. 1795.19 s [trial-tomland] setupCompileFlags: -package-db=/build/tmp.NfBYjhl1Wd/setup-package.conf.d -threaded
  2194. 1795.19 s [trial-tomland] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.NfBYjhl1Wd/Main.o )
  2195. 1795.19 s [trial-tomland] [2 of 2] Linking Setup
  2196. 1795.19 s [trial-tomland] Phase: updateAutotoolsGnuConfigScriptsPhase
  2197. 1795.19 s [trial-tomland] Phase: configurePhase
  2198. 1795.19 s [trial-tomland] configureFlags: --verbose --prefix=/nix/store/7cpl6d7lw2zmj05j49vkb5zpzyqklhg3-trial-tomland-0.0.0.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/nix/store/2nqnl7ph599bb95cf86a7k161l05ac4j-trial-tomland-0.0.0.0-doc/share/doc/trial-tomland-0.0.0.0 --with-gcc=gcc --package-db=/build/tmp.NfBYjhl1Wd/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --extra-lib-dirs=/nix/store/xp8g8298vbm4k9ipj14xf1r4rh899hr4-ncurses-6.5/lib --extra-lib-dirs=/nix/store/wxm6pczq28ppr7ffwclsl6njbzzr48zf-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/3f0hp921ncxr249f5lmspc8silkqr8f7-elfutils-0.194/lib --extra-lib-dirs=/nix/store/km81slwkcc82dbwywl10gpffjb78g6ni-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/fvsl0b39y6ns2z66gfvc2raca3b5wr18-numactl-2.0.18/lib
  2199. 1795.19 s [trial-tomland] Using Parsec parser
  2200. 1795.19 s [trial-tomland] Configuring trial-tomland-0.0.0.0...
  2201. 1795.19 s [trial-tomland] Dependency base >=4.12.0.0 && <4.22: using base-4.20.1.0
  2202. 1795.19 s [trial-tomland] Dependency text >=1.2.3 && <2.2: using text-2.1.2
  2203. 1795.19 s [trial-tomland] Dependency tomland >=1.3.0.0 && <1.4: using tomland-1.3.3.3
  2204. 1795.19 s [trial-tomland] Dependency trial >=0.0.0.0 && <0.1: using trial-0.0.0.0
  2205. 1795.19 s [trial-tomland] Source component graph: component lib
  2206. 1795.19 s [trial-tomland] Configured component graph:
  2207. 1795.19 s [trial-tomland] component trial-tomland-0.0.0.0-E4osGWilslCFEHHoMMszv3
  2208. 1795.19 s [trial-tomland] include base-4.20.1.0-2277
  2209. 1795.19 s [trial-tomland] include text-2.1.2-9845
  2210. 1795.19 s [trial-tomland] include tomland-1.3.3.3-FAHipfYkfa6GEJ1pfyDRff
  2211. 1795.19 s [trial-tomland] include trial-0.0.0.0-6HrvJcDq8Ox2mqT9jHQLhu
  2212. 1795.19 s [trial-tomland] Linked component graph:
  2213. 1795.19 s [trial-tomland] unit trial-tomland-0.0.0.0-E4osGWilslCFEHHoMMszv3
  2214. 1795.19 s [trial-tomland] include base-4.20.1.0-2277
  2215. 1795.19 s [trial-tomland] include text-2.1.2-9845
  2216. 1795.19 s [trial-tomland] include tomland-1.3.3.3-FAHipfYkfa6GEJ1pfyDRff
  2217. 1795.19 s [trial-tomland] include trial-0.0.0.0-6HrvJcDq8Ox2mqT9jHQLhu
  2218. 1795.19 s [trial-tomland] Trial.Tomland=trial-tomland-0.0.0.0-E4osGWilslCFEHHoMMszv3:Trial.Tomland
  2219. 1795.19 s [trial-tomland] Ready component graph:
  2220. 1795.19 s [trial-tomland] definite trial-tomland-0.0.0.0-E4osGWilslCFEHHoMMszv3
  2221. 1795.19 s [trial-tomland] depends base-4.20.1.0-2277
  2222. 1795.19 s [trial-tomland] depends text-2.1.2-9845
  2223. 1795.19 s [trial-tomland] depends tomland-1.3.3.3-FAHipfYkfa6GEJ1pfyDRff
  2224. 1795.19 s [trial-tomland] depends trial-0.0.0.0-6HrvJcDq8Ox2mqT9jHQLhu
  2225. 1795.19 s [trial-tomland] Using Cabal-3.12.1.0 compiled by ghc-9.10
  2226. 1795.19 s [trial-tomland] Using compiler: ghc-9.10.2
  2227. 1795.19 s [trial-tomland] Using install prefix:
  2228. 1795.19 s [trial-tomland] /nix/store/7cpl6d7lw2zmj05j49vkb5zpzyqklhg3-trial-tomland-0.0.0.0
  2229. 1795.19 s [trial-tomland] Executables installed in:
  2230. 1795.19 s [trial-tomland] /nix/store/7cpl6d7lw2zmj05j49vkb5zpzyqklhg3-trial-tomland-0.0.0.0/bin
  2231. 1795.19 s [trial-tomland] Libraries installed in:
  2232. 1795.19 s [trial-tomland] /nix/store/7cpl6d7lw2zmj05j49vkb5zpzyqklhg3-trial-tomland-0.0.0.0/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/trial-tomland-0.0.0.0-E4osGWilslCFEHHoMMszv3
  2233. 1795.19 s [trial-tomland] Dynamic Libraries installed in:
  2234. 1795.19 s [extra] If you qualify the identifier, haddock can try to link it anyway.
  2235. 1795.19 s [extra] 100% ( 40 / 40) in 'Control.Monad.Extra'
  2236. 1795.19 s [extra] 92% ( 13 / 14) in 'Data.Foldable.Extra'
  2237. 1795.19 s [extra] Missing documentation for:
  2238. 1795.19 s [extra] Module header
  2239. 1795.19 s [extra] Warning: 'Lock' is ambiguous. It is defined
  2240. 1795.19 s [extra] * at src/Control/Concurrent/Extra.hs:106:16
  2241. 1795.19 s [extra] * at src/Control/Concurrent/Extra.hs:106:1
  2242. 1795.19 s [extra] You may be able to disambiguate the identifier by qualifying it or
  2243. 1795.19 s [extra] by specifying the type/value namespace explicitly.
  2244. 1795.19 s [extra] Defaulting to the one defined at src/Control/Concurrent/Extra.hs:106:1
  2245. 1795.19 s [extra] Warning: 'Var' is ambiguous. It is defined
  2246. 1795.19 s [extra] * at src/Control/Concurrent/Extra.hs:146:17
  2247. 1795.19 s [extra] * at src/Control/Concurrent/Extra.hs:146:1
  2248. 1795.19 s [extra] You may be able to disambiguate the identifier by qualifying it or
  2249. 1795.19 s [extra] by specifying the type/value namespace explicitly.
  2250. 1795.19 s [extra] Defaulting to the one defined at src/Control/Concurrent/Extra.hs:146:1
  2251. 1795.19 s [extra] Warning: 'Barrier' is ambiguous. It is defined
  2252. 1795.19 s [extra] * at src/Control/Concurrent/Extra.hs:210:21
  2253. 1795.19 s [extra] * at src/Control/Concurrent/Extra.hs:210:1
  2254. 1795.19 s [extra] You may be able to disambiguate the identifier by qualifying it or
  2255. 1795.19 s [extra] by specifying the type/value namespace explicitly.
  2256. 1795.19 s [extra] Defaulting to the one defined at src/Control/Concurrent/Extra.hs:210:1
  2257. 1795.19 s [extra] 100% ( 27 / 27) in 'Control.Concurrent.Extra'
  2258. 1795.19 s [extra] 100% ( 8 / 8) in 'System.Directory.Extra'
  2259. 1795.19 s [extra] 100% ( 2 / 2) in 'System.Environment.Extra'
  2260. 1795.19 s [extra] 100% ( 26 / 26) in 'System.IO.Extra'
  2261. 1795.19 s [extra] 100% ( 4 / 4) in 'System.Info.Extra'
  2262. 1795.19 s [extra] 100% ( 5 / 5) in 'System.Process.Extra'
  2263. 1795.19 s [extra] 100% ( 8 / 8) in 'System.Time.Extra'
  2264. 1795.19 s [extra] 100% (270 /270) in 'Extra'
  2265. 1795.19 s [extra] 100% ( 2 / 2) in 'Text.Read.Extra'
  2266. 1795.19 s [extra] Documentation created: dist/doc/html/extra/, dist/doc/html/extra/extra.txt
  2267. 1795.19 s [extra] Preprocessing test suite 'extra-test' for extra-1.8.1...
  2268. 1795.19 s [extra] Phase: installPhase
  2269. 1795.19 s [extra] Installing library in /nix/store/yzmrff2bk5binq582sbgr1nqc87bn2mv-extra-1.8.1/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/extra-1.8.1-K2veo5mnkQk4ZLinPLkzz1
  2270. 1795.19 s [extra] Phase: fixupPhase
  2271. 1795.19 s [extra] shrinking RPATHs of ELF executables and libraries in /nix/store/yzmrff2bk5binq582sbgr1nqc87bn2mv-extra-1.8.1
  2272. 1795.19 s [extra] shrinking /nix/store/yzmrff2bk5binq582sbgr1nqc87bn2mv-extra-1.8.1/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/libHSextra-1.8.1-K2veo5mnkQk4ZLinPLkzz1-ghc9.10.2.so
  2273. 1795.19 s [extra] checking for references to /build/ in /nix/store/yzmrff2bk5binq582sbgr1nqc87bn2mv-extra-1.8.1...
  2274. 1795.19 s [extra] patching script interpreter paths in /nix/store/yzmrff2bk5binq582sbgr1nqc87bn2mv-extra-1.8.1
  2275. 1795.19 s [extra] stripping (with command strip and flags -S -p) in /nix/store/yzmrff2bk5binq582sbgr1nqc87bn2mv-extra-1.8.1/lib
  2276. 1795.19 s [extra] shrinking RPATHs of ELF executables and libraries in /nix/store/0sdv213rxnm3gllhr4zn6rmlkg7xvdgw-extra-1.8.1-doc
  2277. 1795.19 s [extra] checking for references to /build/ in /nix/store/0sdv213rxnm3gllhr4zn6rmlkg7xvdgw-extra-1.8.1-doc...
  2278. 1795.19 s [extra] patching script interpreter paths in /nix/store/0sdv213rxnm3gllhr4zn6rmlkg7xvdgw-extra-1.8.1-doc
  2279. 1795.19 s [foldl] Warning: 'Scan' is ambiguous. It is defined
  2280. 1795.19 s [foldl] * at src/Control/Scanl.hs:101:5
  2281. 1795.19 s [foldl] * at src/Control/Scanl.hs:99:1
  2282. 1795.19 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  2283. 1795.19 s [foldl] by specifying the type/value namespace explicitly.
  2284. 1795.19 s [foldl] Defaulting to the one defined at src/Control/Scanl.hs:99:1
  2285. 1795.19 s [foldl] Warning: 'Fold' is ambiguous. It is defined
  2286. 1795.19 s [foldl] * at src/Control/Foldl.hs:239:5
  2287. 1795.19 s [foldl] * at src/Control/Foldl.hs:237:1
  2288. 1795.19 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  2289. 1795.19 s [foldl] by specifying the type/value namespace explicitly.
  2290. 1795.19 s [foldl] Defaulting to the one defined at src/Control/Foldl.hs:237:1
  2291. 1795.19 s [foldl] Warning: 'Comonad' is out of scope.
  2292. 1795.19 s [foldl] If you qualify the identifier, haddock can try to link it anyway.
  2293. 1795.19 s [foldl] Warning: 'ScanM' is ambiguous. It is defined
  2294. 1795.19 s [foldl] * at src/Control/Scanl.hs:249:3
  2295. 1795.19 s [foldl] * at src/Control/Scanl.hs:247:1
  2296. 1795.19 s [foldl] You may be able to disambiguate the identifier by qualifying it or
  2297. 1795.19 s [foldl] by specifying the type/value namespace explicitly.
  2298. 1795.19 s [foldl] Defaulting to the one defined at src/Control/Scanl.hs:247:1
  2299. 1795.19 s [foldl] Warning: 'liftIO' is out of scope.
  2300. 1795.19 s [foldl] If you qualify the identifier, haddock can try to link it anyway.
  2301. 1795.19 s [foldl] 95% ( 21 / 22) in 'Control.Scanl'
  2302. 1795.19 s [foldl] Missing documentation for:
  2303. 1795.19 s [foldl] arrM (src/Control/Scanl.hs:439)
  2304. 1795.19 s [foldl] Warning: Control.Foldl: could not find link destinations for:
  2305. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.MVector
  2306. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateST0
  2307. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateIO
  2308. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateIdentityT
  2309. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateST
  2310. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateAccumT
  2311. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateContT
  2312. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateExceptT
  2313. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateMaybeT
  2314. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateRWST0
  2315. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateRWST1
  2316. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateRWST
  2317. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateReaderT
  2318. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateSelectT
  2319. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateStateT0
  2320. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateStateT
  2321. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateWriterT0
  2322. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateWriterT1
  2323. 1795.19 s [foldl] - Control.Monad.Primitive.D:R:PrimStateWriterT
  2324. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicLength
  2325. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicUnsafeCopy
  2326. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicUnsafeFreeze
  2327. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicUnsafeIndexM
  2328. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicUnsafeSlice
  2329. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicUnsafeThaw
  2330. 1795.19 s [foldl] - Data.Vector.Generic.Base.elemseq
  2331. 1795.19 s [foldl] - Data.Profunctor.Traversing.Baz
  2332. 1795.19 s [foldl] - Data.Vector.Vector
  2333. 1795.19 s [foldl] - Data.Vector.Mutable.MVector
  2334. 1795.19 s [foldl] - Data.Vector.Primitive.Vector
  2335. 1795.19 s [foldl] - Data.Vector.Primitive.Mutable.MVector
  2336. 1795.19 s [foldl] - Data.Vector.Storable.Vector
  2337. 1795.19 s [foldl] - Data.Vector.Storable.Mutable.MVector
  2338. 1795.19 s [foldl] - Data.Vector.Strict.Vector
  2339. 1795.19 s [foldl] - Data.Vector.Strict.Mutable.MVector
  2340. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.As
  2341. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.DoNotUnboxLazy
  2342. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.DoNotUnboxNormalForm
  2343. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.DoNotUnboxStrict
  2344. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.IsoUnbox
  2345. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.MVector
  2346. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.Unbox
  2347. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.UnboxViaPrim
  2348. 1795.19 s [foldl] - Data.Vector.Unboxed.Base.Vector
  2349. 1795.19 s [foldl] Warning: Control.Foldl.Text: could not find link destinations for:
  2350. 1795.19 s [foldl] - Data.Profunctor.Traversing.Baz
  2351. 1795.19 s [foldl] - Data.Vector.Vector
  2352. 1795.19 s [foldl] - Data.Vector.Strict.Vector
  2353. 1795.19 s [foldl] Warning: Control.Foldl.ByteString: could not find link destinations for:
  2354. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.MVector
  2355. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicClear
  2356. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicInitialize
  2357. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicLength
  2358. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicOverlaps
  2359. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicSet
  2360. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeCopy
  2361. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeGrow
  2362. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeMove
  2363. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeNew
  2364. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeRead
  2365. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeReplicate
  2366. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeSlice
  2367. 1795.19 s [foldl] - Data.Vector.Generic.Mutable.Base.basicUnsafeWrite
  2368. 1795.19 s [foldl] - Data.Vector.Generic.Base.basicLength
  2369. 1795.19 s [free] Warning: 'Free' is ambiguous. It is defined
  2370. 1795.19 s [free] * at src/Control/Monad/Free/Ap.hs:81:26
  2371. 1795.19 s [free] * at src/Control/Monad/Free/Ap.hs:81:1
  2372. 1795.19 s [free] You may be able to disambiguate the identifier by qualifying it or
  2373. 1795.19 s [free] by specifying the type/value namespace explicitly.
  2374. 1795.19 s [free] Defaulting to the one defined at src/Control/Monad/Free/Ap.hs:81:1
  2375. 1795.19 s [free] 100% ( 16 / 16) in 'Control.Monad.Free.Ap'
  2376. 1795.19 s [free] Warning: 'FreeT' is ambiguous. It is defined
  2377. 1795.19 s [free] * at src/Control/Monad/Trans/Free.hs:150:23
  2378. 1795.19 s [free] * at src/Control/Monad/Trans/Free.hs:150:1
  2379. 1795.19 s [free] You may be able to disambiguate the identifier by qualifying it or
  2380. 1795.19 s [free] by specifying the type/value namespace explicitly.
  2381. 1795.19 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free.hs:150:1
  2382. 1795.19 s [free] Warning: 'Free' is ambiguous. It is defined
  2383. 1795.19 s [free] * at src/Control/Monad/Trans/Free.hs:77:29
  2384. 1795.19 s [free] * at src/Control/Monad/Trans/Free.hs:153:1
  2385. 1795.19 s [free] You may be able to disambiguate the identifier by qualifying it or
  2386. 1795.19 s [free] by specifying the type/value namespace explicitly.
  2387. 1795.19 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free.hs:153:1
  2388. 1795.19 s [free] Warning: 'FT' is ambiguous. It is defined
  2389. 1795.19 s [free] * at src/Control/Monad/Trans/Free/Church.hs:69:20
  2390. 1795.19 s [free] * at src/Control/Monad/Trans/Free/Church.hs:69:1
  2391. 1795.19 s [free] You may be able to disambiguate the identifier by qualifying it or
  2392. 1795.19 s [free] by specifying the type/value namespace explicitly.
  2393. 1795.19 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Free/Church.hs:69:1
  2394. 1795.19 s [free] 100% ( 28 / 28) in 'Control.Monad.Trans.Free.Church'
  2395. 1795.19 s [free] Warning: 'Free' is out of scope.
  2396. 1795.19 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2397. 1795.19 s [free] Warning: 'IterT' is ambiguous. It is defined
  2398. 1795.19 s [free] * at src/Control/Monad/Trans/Iter.hs:105:21
  2399. 1795.19 s [free] * at src/Control/Monad/Trans/Iter.hs:105:1
  2400. 1795.19 s [free] You may be able to disambiguate the identifier by qualifying it or
  2401. 1795.19 s [free] by specifying the type/value namespace explicitly.
  2402. 1795.19 s [free] Defaulting to the one defined at src/Control/Monad/Trans/Iter.hs:105:1
  2403. 1795.19 s [free] Warning: 'FreeT' is out of scope.
  2404. 1795.19 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2405. 1795.19 s [free] Warning: 'Identity' is ambiguous. It is defined
  2406. 1795.19 s [free] * in ‘GHC.Internal.Data.Functor.Identity’
  2407. 1795.19 s [free] * in ‘GHC.Internal.Data.Functor.Identity’
  2408. 1795.19 s [free] You may be able to disambiguate the identifier by qualifying it or
  2409. 1795.19 s [free] by specifying the type/value namespace explicitly.
  2410. 1795.19 s [free] Defaulting to the one defined in ‘GHC.Internal.Data.Functor.Identity’
  2411. 1795.19 s [free] Warning: 'void' is out of scope.
  2412. 1795.19 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2413. 1795.19 s [free] Warning: 'race' is out of scope.
  2414. 1795.19 s [free] If you qualify the identifier, haddock can try to link it anyway.
  2415. 1795.19 s [free] 100% ( 25 / 25) in 'Control.Monad.Trans.Iter'
  2416. 1795.19 s [free] Warning: Control.Comonad.Cofree: could not find link destinations for:
  2417. 1795.19 s [free] - Control.Comonad.Cofree.Rep_Cofree
  2418. 1795.19 s [free] - Control.Comonad.Cofree.Rep1_Cofree
  2419. 1795.19 s [free] Warning: Control.Comonad.Trans.Cofree: could not find link destinations for:
  2420. 1795.19 s [free] - Control.Comonad.Trans.Cofree.Rep_CofreeF
  2421. 1795.19 s [free] - Control.Comonad.Trans.Cofree.Rep1_CofreeF
  2422. 1795.19 s [free] Warning: Control.Monad.Trans.Free: could not find link destinations for:
  2423. 1795.19 s [free] - Control.Monad.Trans.Free.Rep_FreeF
  2424. 1795.19 s [free] - Control.Monad.Trans.Free.Rep1_FreeF
  2425. 1795.19 s [free] Warning: Control.Monad.Free: could not find link destinations for:
  2426. 1795.19 s [free] - Control.Monad.Free.Rep_Free
  2427. 1795.19 s [free] - Control.Monad.Free.Rep1_Free
  2428. 1795.19 s [free] Warning: Control.Monad.Trans.Free.Ap: could not find link destinations for:
  2429. 1795.19 s [free] - Control.Monad.Trans.Free.Ap.Rep_FreeF
  2430. 1795.19 s [free] - Control.Monad.Trans.Free.Ap.Rep1_FreeF
  2431. 1795.19 s [free] Warning: Control.Monad.Free.Ap: could not find link destinations for:
  2432. 1795.19 s [free] - Control.Monad.Free.Ap.Rep_Free
  2433. 1795.19 s [free] - Control.Monad.Free.Ap.Rep1_Free
  2434. 1795.19 s [free] Documentation created: dist/doc/html/free/, dist/doc/html/free/free.txt
  2435. 1795.19 s [free] Phase: installPhase
  2436. 1795.19 s [free] Installing library in /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2/lib/ghc-9.10.2/lib/x86_64-linux-ghc-9.10.2-1e2a/free-5.2-KsWRdGz0nOlHHyGfxH7UKC
  2437. 1795.19 s [free] Phase: fixupPhase
  2438. 1795.19 s [free] shrinking RPATHs of ELF executables and libraries in /nix/store/9id1khnlshc32scb92hbwb4w6x02r51x-free-5.2
  2439. 1795.19 s [monoid-subclasses] In an irrefutable pattern: Patterns of type ‘[a]’ not matched: []
  2440. 1795.19 s [monoid-subclasses] |
  2441. 1795.19 s [monoid-subclasses] 225 | combine x (~(y:rest), False) = (mappend x y : rest, True)
  2442. 1795.19 s [monoid-subclasses] | ^^^^^^^^
  2443. 1795.19 s [monoid-subclasses]
  2444. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:252:59: warning: [GHC-63394] [-Wx-partial]
  2445. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2446. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2447. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2448. 1795.19 s [monoid-subclasses] |
  2449. 1795.19 s [monoid-subclasses] 252 | ++ List.map (\b1-> (a, b1, mempty)) (List.tail $ inits b)
  2450. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2451. 1795.19 s [monoid-subclasses]
  2452. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:253:54: warning: [GHC-63394] [-Wx-partial]
  2453. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2454. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2455. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2456. 1795.19 s [monoid-subclasses] |
  2457. 1795.19 s [monoid-subclasses] 253 | ++ List.map (\c1-> (a, b, c1)) (List.tail $ inits c)
  2458. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2459. 1795.19 s [monoid-subclasses]
  2460. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:255:59: warning: [GHC-63394] [-Wx-partial]
  2461. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2462. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2463. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2464. 1795.19 s [monoid-subclasses] |
  2465. 1795.19 s [monoid-subclasses] 255 | ++ List.map (\b1-> (mempty, b1, c)) (List.tail $ tails b)
  2466. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2467. 1795.19 s [monoid-subclasses]
  2468. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:256:64: warning: [GHC-63394] [-Wx-partial]
  2469. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2470. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2471. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2472. 1795.19 s [monoid-subclasses] |
  2473. 1795.19 s [monoid-subclasses] 256 | ++ List.map (\c1-> (mempty, mempty, c1)) (List.tail $ tails c)
  2474. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2475. 1795.19 s [monoid-subclasses]
  2476. 1795.19 s [monoid-subclasses] src/Data/Monoid/Factorial.hs:309:70: warning: [GHC-63394] [-Wx-partial]
  2477. 1795.19 s [monoid-subclasses] In the use of ‘tail’
  2478. 1795.19 s [monoid-subclasses] (imported from Data.List, but defined in GHC.Internal.List):
  2479. 1795.19 s [monoid-subclasses] "This is a partial function, it throws an error on empty lists. Replace it with 'drop' 1, or use pattern matching or 'GHC.Internal.Data.List.uncons' instead. Consider refactoring to use "Data.List.NonEmpty"."
  2480. 1795.19 s [monoid-subclasses] |
  2481. 1795.19 s [monoid-subclasses] 309 | ++ List.map (\b1-> (a, b1, mempty, mempty)) (List.tail $ inits b)
  2482. 1795.19 s [monoid-subclasses] | ^^^^^^^^^
  2483. 1795.19 s [monoid-subclasses]
  2484. 1795.26 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5 /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc
  2485. 1795.93 s [post-build-hook] Pushing 2 paths (100 are already present) using zstd to cache sellout ⏳
  2486. 1795.93 s [post-build-hook]
  2487. 1796.37 s [post-build-hook] Pushing /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5 (5.48 MiB)
  2488. 1796.44 s [post-build-hook] Pushing /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc (1.55 MiB)
  2489. 1797.38 s [post-build-hook]
  2490. 1797.38 s [post-build-hook] All done.
  2491. 1797.40 s [post-build-hook] Uploading paths from nix-ci to the NixCI cache /nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5 /nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc
  2492. 1797.44 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2493. 1797.59 s [post-build-hook] copying 2 paths...
  2494. 1797.59 s [post-build-hook] copying path '/nix/store/krkxxziv3s8blk6wqrlbcn2b2qznwvl8-reducers-3.12.5-doc' to 'https://cache.nix-ci.com'...
  2495. 1797.90 s [post-build-hook] copying path '/nix/store/a4cl3wk21ifglkiviwi9ms332rjgj0dh-reducers-3.12.5' to 'https://cache.nix-ci.com'...
  2496. 1799.23 s [post-build-hook] warning: 'warn-short-path-literals' is deprecated, use 'lint-short-path-literals = ignore' instead
  2497. 1799.42 s [post-build-hook] copying 1 paths...
  2498. 1799.48 s [post-build-hook] copying path '/nix/store/vkvfl2smpr34n6ash3baslds825nxbi3-reducers-3.12.5.drv' to 'https://cache.nix-ci.com'...
  2499. 1799.67 s [post-build-hook] Uploading paths from nix-ci to cachix cache "sellout" /nix/store/f07lxl3va919wcxcigr3iyr3d2iavrs7-string-interpolate-0.3.4.0-doc /nix/store/zzfc9v1w5cla0ajkjyvcbymaji5mr0f0-string-interpolate-0.3.4.0
  2500. 1800.02 s interrupted by the user