aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2023-03-08 14:45:13 +0100
committerGitHub <noreply@github.com>2023-03-08 14:45:13 +0100
commit0159dfad3f48105ecc971d93a562aec36d15ad4a (patch)
treec368479b6ea3d76cbbda36d5c601dc892523bae8
parent1bb81286d189fbfdd9f897b92ce36411da8331ee (diff)
parentbda8d7f165572b2e9c39a36652c386dd2f6ec0a4 (diff)
Merge pull request #8007 from edolstra/fix-coverage
Fix coverage job
-rw-r--r--flake.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 36727b224..c22da1aaf 100644
--- a/flake.nix
+++ b/flake.nix
@@ -523,18 +523,16 @@
enableParallelBuilding = true;
nativeBuildInputs = nativeBuildDeps;
- buildInputs = buildDeps ++ propagatedDeps ++ awsDeps;
+ buildInputs = buildDeps ++ propagatedDeps ++ awsDeps ++ checkDeps;
dontInstall = false;
doInstallCheck = true;
+ installCheckTarget = "installcheck"; # work around buggy detection in stdenv
lcovFilter = [ "*/boost/*" "*-tab.*" ];
- # We call `dot', and even though we just use it to
- # syntax-check generated dot files, it still requires some
- # fonts. So provide those.
- FONTCONFIG_FILE = texFunctions.fontsConf;
+ hardeningDisable = ["fortify"];
};
# System tests.