mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
parted: re-enable checks
This commit is contained in:
parent
5ed1aee3af
commit
06cfff71dd
1 changed files with 3 additions and 4 deletions
|
@ -29,10 +29,9 @@ stdenv.mkDerivation rec {
|
|||
++ stdenv.lib.optional (devicemapper == null) "--disable-device-mapper"
|
||||
++ stdenv.lib.optional enableStatic "--enable-static";
|
||||
|
||||
# Tests are currently failing because Hydra runs builds as uid 0.
|
||||
# It'd be better to try to fix these tests, but this is blocking
|
||||
# all NixOS Hydra builds right now.
|
||||
doCheck = false;
|
||||
# Tests were previously failing due to Hydra running builds as uid 0.
|
||||
# That should hopefully be fixed now.
|
||||
doCheck = true;
|
||||
|
||||
preCheck =
|
||||
stdenv.lib.optionalString doCheck
|
||||
|
|
Loading…
Reference in a new issue