rustc: Disable tests for now

This commit is contained in:
Eelco Dolstra 2018-07-09 12:35:01 +02:00
parent 07933800fb
commit 323fe3a305
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 5 additions and 2 deletions

View file

@ -36,7 +36,10 @@ in rec {
# see https://github.com/rust-lang/rust/issues/49807#issuecomment-380860567
# So we do the same.
# 2. Tests run out of memory for i686
doCheck = !stdenv.isAarch64 && !stdenv.isi686;
#doCheck = !stdenv.isAarch64 && !stdenv.isi686;
# Disabled for now; see https://github.com/NixOS/nixpkgs/pull/42348#issuecomment-402115598.
doCheck = false;
};
cargo = callPackage ./cargo.nix rec {

View file

@ -63,7 +63,7 @@ stdenv.mkDerivation {
++ optional (targets != []) "--target=${target}"
++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
# The boostrap.py will generated a Makefile that then executes the build.
# The bootstrap.py will generated a Makefile that then executes the build.
# The BOOTSTRAP_ARGS used by this Makefile must include all flags to pass
# to the bootstrap builder.
postConfigure = ''