tvl-depot/tvix/store/default.nix
Brian Olsen cfb810d81a fix(tvix/store): Fix FUSE support on MacOS
This partially fixes b/312 and gets FUSE to work again on MacOS.

It is mostly small type changes and an update to fuse-backend-rs because
upstream currently doesn't work with MacFuse. It also sets the default
FUSE thread count on MacOS to 1 because otherwise the mount command will
hang when shutting down as only one thread gets ENODEV and all the others
just keep blocking.

Change-Id: Ifb3c4268caf296c487049c1dc4618acb32497f44
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9490
Tested-by: BuildkiteCI
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Reviewed-by: flokli <flokli@flokli.de>
2023-10-02 15:46:47 +00:00

33 lines
1 KiB
Nix

{ depot, pkgs, ... }:
let
mkImportCheck = p: expectedPath: {
label = ":nix :import ${p} with tvix-store import";
needsOutput = true;
command = pkgs.writeShellScript "tvix-import-check" ''
export BLOB_SERVICE_ADDR=memory://
export DIRECTORY_SERVICE_ADDR=memory://
export PATH_INFO_SERVICE_ADDR=memory://
TVIX_STORE_OUTPUT=$(result/bin/tvix-store import ${p})
EXPECTED='${/* the vebatim expected Tvix output: */expectedPath}'
echo "tvix-store output: ''${TVIX_STORE_OUTPUT}"
if [ "$TVIX_STORE_OUTPUT" != "$EXPECTED" ]; then
echo "Correct would have been ''${EXPECTED}"
exit 1
fi
echo "Output was correct."
'';
};
in
(depot.tvix.crates.workspaceMembers.tvix-store.build.override {
runTests = true;
# virtiofs feature currently fails to build on Darwin.
features = if pkgs.stdenv.isDarwin then [ "fuse" "tonic-reflection" ] else [ "default" ];
}).overrideAttrs (_: {
meta.ci.extraSteps = {
import-docs = (mkImportCheck "tvix/store/docs" ./docs);
};
})