Skip to content

Implement basic criterion benchmarking suite

ef60bf5
Select commit
Loading
Failed to load commit list.
Closed

Prototype a timeseries framework (WIP) #6344

Implement basic criterion benchmarking suite
ef60bf5
Select commit
Loading
Failed to load commit list.
IOG Hydra / ci/hydra-build:x86_64-linux.nonrequired failed Nov 12, 2025 in 0s

Build dependency failed

1 failed steps

Details

Failed Steps

Step 1

Derivation

/nix/store/ysmjxwf4a94x80338xj6hz9gbjbhw7w0-hlint-check.drv

Log

timeseries-io/app/Main.hs:25:1-52: Warning: Use fewer imports
Found:
  import Cardano.Logging.Resources ( readResourceStats )
  import Cardano.Logging.Resources ( ResourceStats )
  import Cardano.Logging.Resources ( Resources(..) )
  
Perhaps:
  import Cardano.Logging.Resources
      ( readResourceStats, ResourceStats, Resources(..) )
  

timeseries-io/src/Cardano/Timeseries/Store/Tree.hs:31:19-33: Suggestion: Use list literal
Found:
  Point ls v : []
Perhaps:
  [Point ls v]

2 hints
=====================================================================
Note: to ignore a particular hint (e.g. "Reduce duplication"), write
this in the source file:
{-# ANN module ("HLint: ignore Reduce duplication" :: Text) #-}
You can also apply it just to a particular function, which is better:
{-# ANN funcName ("HLint: ignore Reduce duplication" :: Text) #-}