Build Nix with the GC disabled in hydra

Make sure that it still compiles as it's easy to accidentally break one
of the `#if` guarded clauses
This commit is contained in:
Théophane Hufschmitt 2022-12-13 10:44:07 +01:00
parent 6e31d27cba
commit 2ec6685eb0

View file

@ -420,6 +420,8 @@
buildCross = nixpkgs.lib.genAttrs crossSystems (crossSystem:
nixpkgs.lib.genAttrs ["x86_64-linux"] (system: self.packages.${system}."nix-${crossSystem}"));
buildNoGc = nixpkgs.lib.genAttrs systems (system: self.packages.${system}.nix.overrideAttrs (a: { configureFlags = (a.configureFlags or []) ++ ["--enable-gc=no"];}));
# Perl bindings for various platforms.
perlBindings = nixpkgs.lib.genAttrs systems (system: self.packages.${system}.nix.perl-bindings);