Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

rustc: disable test on i686

They run out of memory and lead to failing tests.

fixes #39110

(cherry picked from commit 14a119e1986cb6d60aef754561f9bbb36729fa43)

+3 -2
+3 -2
pkgs/development/compilers/rust/default.nix
··· 20 21 configureFlags = [ "--release-channel=stable" ]; 22 23 - # Upstream is not running tests on aarch64: 24 # see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567 25 # So we do the same. 26 - doCheck = !stdenv.isAarch64; 27 28 patches = [ 29 ./patches/0001-Disable-fragile-tests-libstd-net-tcp-on-Darwin-Linux.patch
··· 20 21 configureFlags = [ "--release-channel=stable" ]; 22 23 + # 1. Upstream is not running tests on aarch64: 24 # see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567 25 # So we do the same. 26 + # 2. Tests run out of memory for i686 27 + doCheck = !stdenv.isAarch64 && !stdenv.isi686; 28 29 patches = [ 30 ./patches/0001-Disable-fragile-tests-libstd-net-tcp-on-Darwin-Linux.patch