We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 480ce19 + 89b35ec commit be2c9efCopy full SHA for be2c9ef
packaging/hydra.nix
@@ -73,7 +73,7 @@ let
73
]
74
);
75
in
76
-{
+rec {
77
/**
78
An internal check to make sure our package listing is complete.
79
*/
@@ -145,18 +145,9 @@ in
145
)
146
147
148
- buildNoGc =
149
- let
150
- components = forAllSystems (
151
- system:
152
- nixpkgsFor.${system}.native.nixComponents2.overrideScope (
153
- self: super: {
154
- nix-expr = super.nix-expr.override { enableGC = false; };
155
- }
156
- )
157
- );
158
- in
159
- forAllPackages (pkgName: forAllSystems (system: components.${system}.${pkgName}));
+ # Builds with sanitizers already have GC disabled, so this buildNoGc can just
+ # point to buildWithSanitizers in order to reduce the load on hydra.
+ buildNoGc = buildWithSanitizers;
160
161
buildWithSanitizers =
162
let
0 commit comments