Closed dleidert closed 1 year ago
I've built the binaries on a Raspberry Pi via cabal update, cabel build, cabal install. The latter fails, complaining that the Chainweb.Test.Mining module cannot be found. I fixed this by adding the module to chainweb.cabal:
cabal update
cabel build
cabal install
chainweb.cabal
diff --git a/chainweb.cabal b/chainweb.cabal index 30223b14..f6685458 100644 --- a/chainweb.cabal +++ b/chainweb.cabal @@ -444,6 +444,7 @@ test-suite chainweb-tests Chainweb.Test.Mempool.InMem Chainweb.Test.Mempool.RestAPI Chainweb.Test.Mempool.Sync + Chainweb.Test.Mining Chainweb.Test.Misc Chainweb.Test.Orphans.Internal Chainweb.Test.Orphans.Pact
Thank you for your report. Looks like this has been fixed as of a8c0ba57, so I will close it.
I've built the binaries on a Raspberry Pi via
cabal update
,cabel build
,cabal install
. The latter fails, complaining that the Chainweb.Test.Mining module cannot be found. I fixed this by adding the module tochainweb.cabal
: