Build #1 for scientific-0.3.8.0

[all reports]

Package scientific-0.3.8.0
Install InstallOk
Docs Ok
Tests Ok
Time submitted 2024-05-14 10:27:25.325709036 UTC
Compiler ghc-9.6.3
OS linux
Arch x86_64
Dependencies base-4.18.1.0, binary-0.8.9.1, bytestring-0.11.5.2, containers-0.6.7, deepseq-1.4.8.1, hashable-1.4.4.0, integer-logarithms-1.0.3.1, primitive-0.9.0.0, template-haskell-2.20.0.0, text-2.0.2
Flags -integer-simple

Code Coverage

expressions70% (1410/1992)
booleanguards45% (43/94)
conditions 41% (15/36)
qualifiers100% (0/0)
alternatives64% (159/248)
local declarations83% (90/108)
top-level declarations66% (63/95)

Build log

[view raw]

Resolving dependencies...
Starting     integer-logarithms-1.0.3.1
Starting     primitive-0.9.0.0
Starting     os-string-2.0.2.2
Building     integer-logarithms-1.0.3.1
Building     primitive-0.9.0.0
Building     os-string-2.0.2.2
Completed    integer-logarithms-1.0.3.1
Completed    os-string-2.0.2.2
Starting     filepath-1.5.2.0
Building     filepath-1.5.2.0
Completed    primitive-0.9.0.0
Completed    filepath-1.5.2.0
Starting     hashable-1.4.4.0
Building     hashable-1.4.4.0
Completed    hashable-1.4.4.0
Downloading  scientific-0.3.8.0
Downloaded   scientific-0.3.8.0
Starting     scientific-0.3.8.0
Building     scientific-0.3.8.0
Completed    scientific-0.3.8.0

Test log

[view raw]

Resolving dependencies...
Build profile: -w ghc-9.6.3 -O0
In order, the following will be built (use -v for more details):
 - tasty-smallcheck-0.8.2 (lib:tasty-smallcheck) (requires build)
 - scientific-0.3.8.0 (first run)
Starting     tasty-smallcheck-0.8.2 (all, legacy fallback)
Building     tasty-smallcheck-0.8.2 (all, legacy fallback)
Installing   tasty-smallcheck-0.8.2 (all, legacy fallback)
Completed    tasty-smallcheck-0.8.2 (all, legacy fallback)
Configuring scientific-0.3.8.0...
Preprocessing library for scientific-0.3.8.0..
Building library for scientific-0.3.8.0..
[1 of 5] Compiling GHC.Integer.Compat ( src/GHC/Integer/Compat.hs, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/GHC/Integer/Compat.o, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/GHC/Integer/Compat.dyn_o )
[2 of 5] Compiling Utils            ( src/Utils.hs, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Utils.o, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Utils.dyn_o )
[3 of 5] Compiling Data.Scientific  ( src/Data/Scientific.hs, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Data/Scientific.o, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Data/Scientific.dyn_o )

src/Data/Scientific.hs:1041:16: warning: [GHC-62161] [-Wincomplete-uni-patterns]
    Pattern match(es) are non-exhaustive
    In a pattern binding:
        Patterns of type [Char] not matched:
            []
            []
            []
     |
1041 |                (d:ds') = map intToDigit (if ei > 0 then init is' else is')
     |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Data/Scientific.hs:1057:11: warning: [GHC-62161] [-Wincomplete-uni-patterns]
    Pattern match(es) are non-exhaustive
    In a pattern binding: Patterns of type [Char] not matched: []
     |
1057 |           d:ds' = map intToDigit (if ei > 0 then is' else 0:is')
     |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[4 of 5] Compiling Data.Text.Lazy.Builder.Scientific ( src/Data/Text/Lazy/Builder/Scientific.hs, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Data/Text/Lazy/Builder/Scientific.o, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Data/Text/Lazy/Builder/Scientific.dyn_o )

src/Data/Text/Lazy/Builder/Scientific.hs:19:1: warning: [-Wunused-imports]
    The import of Data.Monoid is redundant
      except perhaps to import instances from Data.Monoid
    To import instances alone, use: import Data.Monoid()
   |
19 | import Data.Monoid                  ((<>))
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Data/Text/Lazy/Builder/Scientific.hs:60:12: warning: [GHC-62161] [-Wincomplete-uni-patterns]
    Pattern match(es) are non-exhaustive
    In a pattern binding:
        Patterns of type [Char] not matched:
            []
            []
            []
   |
60 |            (d:ds') = map i2d (if ei > 0 then init is' else is')
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Data/Text/Lazy/Builder/Scientific.hs:88:11: warning: [GHC-62161] [-Wincomplete-uni-patterns]
    Pattern match(es) are non-exhaustive
    In a pattern binding: Patterns of type [Char] not matched: []
   |
88 |           d:ds' = map i2d (if ei > 0 then is' else 0:is')
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[5 of 5] Compiling Data.ByteString.Builder.Scientific ( src/Data/ByteString/Builder/Scientific.hs, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Data/ByteString/Builder/Scientific.o, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/Data/ByteString/Builder/Scientific.dyn_o )

src/Data/ByteString/Builder/Scientific.hs:20:1: warning: [-Wunused-imports]
    The import of Data.Monoid is redundant
      except perhaps to import instances from Data.Monoid
    To import instances alone, use: import Data.Monoid()
   |
20 | import Data.Monoid                  ((<>))
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Data/ByteString/Builder/Scientific.hs:64:12: warning: [GHC-62161] [-Wincomplete-uni-patterns]
    Pattern match(es) are non-exhaustive
    In a pattern binding:
        Patterns of type [Char] not matched:
            []
            []
            []
   |
64 |            (d:ds') = map i2d (if ei > 0 then init is' else is')
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/Data/ByteString/Builder/Scientific.hs:94:11: warning: [GHC-62161] [-Wincomplete-uni-patterns]
    Pattern match(es) are non-exhaustive
    In a pattern binding: Patterns of type [Char] not matched: []
   |
94 |           d:ds' = map i2d (if ei > 0 then is' else 0:is')
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Preprocessing test suite 'test-scientific' for scientific-0.3.8.0..
Building test suite 'test-scientific' for scientific-0.3.8.0..
[1 of 1] Compiling Main             ( test/test.hs, /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/test-scientific/test-scientific-tmp/Main.o )
[2 of 2] Linking /home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/build/test-scientific/test-scientific
Running 1 test suites...
Test suite test-scientific: RUNNING...
Test suite test-scientific: PASS
Test suite logged to:
/home/builder/builder-dir/build-cache/tmp-install/reports/scientific-0.3.8.0.test
Writing: scientific-0.3.8.0-inplace/Data.Text.Lazy.Builder.Scientific.hs.html
Writing: scientific-0.3.8.0-inplace/Data.Scientific.hs.html
Writing: scientific-0.3.8.0-inplace/Data.ByteString.Builder.Scientific.hs.html
Writing: hpc_index.html
Writing: hpc_index_fun.html
Writing: hpc_index_alt.html
Writing: hpc_index_exp.html
Test coverage report written to
/home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/hpc/vanilla/html/test-scientific/hpc_index.html
1 of 1 test suites (1 of 1 test cases) passed.
Writing: scientific-0.3.8.0-inplace/Data.Text.Lazy.Builder.Scientific.hs.html
Writing: scientific-0.3.8.0-inplace/Data.Scientific.hs.html
Writing: scientific-0.3.8.0-inplace/Data.ByteString.Builder.Scientific.hs.html
Writing: hpc_index.html
Writing: hpc_index_fun.html
Writing: hpc_index_alt.html
Writing: hpc_index_exp.html
Package coverage report written to
/home/builder/builder-dir/build-cache/tmp-install/dist-newstyle/build/x86_64-linux/ghc-9.6.3/scientific-0.3.8.0/noopt/hpc/vanilla/html/scientific-0.3.8.0/hpc_index.html