don't generate program index for i686 anymore (#56)

It doesn't seem useful.  It takes some resources (time + RAM),
and most notably it sometimes block channel with harder-to-get logs.
This commit is contained in:
Vladimír Čunát 2022-06-23 19:31:33 +02:00 committed by GitHub
parent 46e717bce0
commit b2053e2a33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,7 +90,7 @@ void mainWrapped(int argc, char * * argv)
/* Get all derivations. */
DrvInfos packages;
for (auto system : std::set<std::string>{"x86_64-linux", "i686-linux", "aarch64-linux"}) {
for (auto system : std::set<std::string>{"x86_64-linux", "aarch64-linux"}) {
auto args = state.allocBindings(2);
Value * vConfig = state.allocValue();
state.mkAttrs(*vConfig, 0);