automake116x: disable tests, also cleanup
This commit is contained in:
parent
9bab07e541
commit
cf84bc0374
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, perl, autoconf, doCheck ? false }:
|
{ stdenv, fetchurl, perl, autoconf }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "automake-1.16.1";
|
name = "automake-1.16.1";
|
||||||
@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
|
|||||||
# Disable indented log output from Make, otherwise "make.test" will
|
# Disable indented log output from Make, otherwise "make.test" will
|
||||||
# fail.
|
# fail.
|
||||||
preCheck = "unset NIX_INDENT_MAKE";
|
preCheck = "unset NIX_INDENT_MAKE";
|
||||||
inherit doCheck;
|
doCheck = false; # takes _a lot_ of time, fails 3 out of 2698 tests, all seem to be related to paths
|
||||||
|
doInstallCheck = false; # runs the same thing, fails the same tests
|
||||||
|
|
||||||
# The test suite can run in parallel.
|
# The test suite can run in parallel.
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user