d17c3d96b6
reqwest wants to be able to read a file of trust roots when constructed, but as it doesn't actually do any HTTPS connections inside the nix build, an empty list of trust roots is totally sufficient. Thankfully /dev/null provides such a file. Change-Id: I9bd1619b2c9f8ff2a6640d2ac410d4de5b20c2ea Reviewed-on: https://cl.tvl.fyi/c/depot/+/11961 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi>
28 lines
1 KiB
Nix
28 lines
1 KiB
Nix
{ depot, pkgs, lib, ... }:
|
|
|
|
(depot.tvix.crates.workspaceMembers.tvix-castore.build.override {
|
|
runTests = true;
|
|
testPreRun = ''
|
|
export SSL_CERT_FILE=/dev/null
|
|
'';
|
|
}).overrideAttrs (old: rec {
|
|
meta.ci.targets = [ "integration-tests" ] ++ lib.filter (x: lib.hasPrefix "with-features" x || x == "no-features") (lib.attrNames passthru);
|
|
passthru = (depot.tvix.utils.mkFeaturePowerset {
|
|
inherit (old) crateName;
|
|
features = ([ "cloud" "fuse" "tonic-reflection" ]
|
|
# virtiofs feature currently fails to build on Darwin
|
|
++ lib.optional pkgs.stdenv.isLinux "virtiofs");
|
|
override.testPreRun = ''
|
|
export SSL_CERT_FILE=/dev/null
|
|
'';
|
|
}) // {
|
|
integration-tests = depot.tvix.crates.workspaceMembers.${old.crateName}.build.override (old: {
|
|
runTests = true;
|
|
testPreRun = ''
|
|
export SSL_CERT_FILE=/dev/null
|
|
export PATH="$PATH:${pkgs.lib.makeBinPath [ pkgs.cbtemulator pkgs.google-cloud-bigtable-tool ]}"
|
|
'';
|
|
features = old.features ++ [ "integration" ];
|
|
});
|
|
};
|
|
})
|