diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-08 14:45:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 14:45:13 +0100 |
commit | 0159dfad3f48105ecc971d93a562aec36d15ad4a (patch) | |
tree | c368479b6ea3d76cbbda36d5c601dc892523bae8 | |
parent | 1bb81286d189fbfdd9f897b92ce36411da8331ee (diff) | |
parent | bda8d7f165572b2e9c39a36652c386dd2f6ec0a4 (diff) |
Merge pull request #8007 from edolstra/fix-coverage
Fix coverage job
-rw-r--r-- | flake.nix | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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. |