2023-09-15 14:34:48 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2022-11-11 23:48:24 +01:00
|
|
|
|
2023-09-15 14:34:48 +02:00
|
|
|
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 {
|
2022-12-07 12:05:02 +01:00
|
|
|
runTests = true;
|
2023-09-29 18:50:50 +02:00
|
|
|
# virtiofs feature currently fails to build on Darwin.
|
2023-10-07 04:17:35 +02:00
|
|
|
# we however can ship it for non-darwin.
|
|
|
|
features = if pkgs.stdenv.isDarwin then [ "default" ] else [ "default" "virtiofs" ];
|
2023-09-15 14:34:48 +02:00
|
|
|
}).overrideAttrs (_: {
|
|
|
|
meta.ci.extraSteps = {
|
|
|
|
import-docs = (mkImportCheck "tvix/store/docs" ./docs);
|
|
|
|
};
|
|
|
|
})
|