37671d3913
The emulator and bigtable client are quite big. Remove them from the default //tvix:shell. Put the tests behind a `integration` feature flag, and add a variant with that enabled to CI, and drop the bigtable tools from //tvix:shell. Change-Id: Ie042097a0d6fc26542faa96c139b77298ccb160a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11582 Reviewed-by: edef <edef@edef.eu> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
52 lines
1.7 KiB
Nix
52 lines
1.7 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;
|
|
testPreRun = ''
|
|
export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
|
|
'';
|
|
|
|
# enable some optional features.
|
|
features = [ "default" "cloud" ]
|
|
# virtiofs feature currently fails to build on Darwin.
|
|
++ pkgs.lib.optional pkgs.stdenv.isLinux "virtiofs";
|
|
}).overrideAttrs (_: {
|
|
meta.ci.targets = [ "integration-tests" ];
|
|
meta.ci.extraSteps = {
|
|
import-docs = (mkImportCheck "tvix/store/docs" ./docs);
|
|
};
|
|
passthru.integration-tests = depot.tvix.crates.workspaceMembers.tvix-store.build.override {
|
|
runTests = true;
|
|
testPreRun = ''
|
|
export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
|
|
export PATH="$PATH:${pkgs.lib.makeBinPath [pkgs.cbtemulator pkgs.google-cloud-bigtable-tool]}"
|
|
'';
|
|
|
|
# enable some optional features.
|
|
features = [ "default" "cloud" "integration" ]
|
|
# virtiofs feature currently fails to build on Darwin.
|
|
++ pkgs.lib.optional pkgs.stdenv.isLinux "virtiofs";
|
|
};
|
|
})
|