Bypass testsuite on tahoe-chk as it seems to try to allocate a large block of memory and dies.

This commit is contained in:
Cale Gibbard 2023-02-08 12:30:09 -05:00
parent ec10835e7b
commit e73176941d

View File

@ -33,7 +33,9 @@ project ./. ({ pkgs, hackGet, ... }: {
# and use callCabal2nix to get a nix derivation to build it.
# See the comment in ./nixpkgs-overlay.nix for a description
# of how to interact with nix thunks.
tahoe-chk = self.callCabal2nix "tahoe-chk" (nix-thunk.thunkSource ./dep/chkhs) {};
# I disabled the tests using the dontCheck function as the testsuite
# tries to allocate too much memory and crashes for me.
tahoe-chk = dontCheck (self.callCabal2nix "tahoe-chk" (nix-thunk.thunkSource ./dep/chkhs) {});
# We also ended up needing an override of the base32 library, which we obtain from Hackage.
base32 = self.callHackageDirect {
pkg = "base32";