From c27fcd94ce3de918d506afe90759d97d1946eca1 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <edolstra@gmail.com>
Date: Sun, 18 Oct 2020 21:44:07 +0200
Subject: [PATCH] Remove buildStatic from checks

checks should be relatively fast, but buildStatic depends on a lot of
stuff that isn't in the binary cache (e.g. musl builds of Git and
Mercurial that we probably don't need since we don't link against
them...).
---
 flake.nix | 2 --
 1 file changed, 2 deletions(-)

diff --git a/flake.nix b/flake.nix
index 22ea2911e..abc614c8d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -440,8 +440,6 @@
       checks = forAllSystems (system: {
         binaryTarball = self.hydraJobs.binaryTarball.${system};
         perlBindings = self.hydraJobs.perlBindings.${system};
-      } // nixpkgs.lib.optionalAttrs (builtins.elem system linuxSystems) {
-        buildStatic = self.hydraJobs.buildStatic.${system};
       });
 
       packages = forAllSystems (system: {
-- 
GitLab