Merge pull request #120679 from lukegb/big-parallel
treewide: require big-parallel on large, slow builds
This commit is contained in:
commit
040523e378
@ -297,6 +297,9 @@ stdenv.mkDerivation rec {
|
|||||||
qemu-system-i386 = "bin/qemu-system-i386";
|
qemu-system-i386 = "bin/qemu-system-i386";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Builds in ~3h with 2 cores, and ~20m with a big-parallel builder.
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://www.qemu.org/";
|
homepage = "http://www.qemu.org/";
|
||||||
description = "A generic and open source machine emulator and virtualizer";
|
description = "A generic and open source machine emulator and virtualizer";
|
||||||
|
@ -63,6 +63,9 @@ stdenv.mkDerivation rec {
|
|||||||
./cmake-dirs.patch
|
./cmake-dirs.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Builds in 2+h with 2 cores, and ~10m with a big-parallel builder.
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A C++ interface for Amazon Web Services";
|
description = "A C++ interface for Amazon Web Services";
|
||||||
homepage = "https://github.com/awslabs/aws-sdk-cpp";
|
homepage = "https://github.com/awslabs/aws-sdk-cpp";
|
||||||
|
@ -297,6 +297,9 @@ in buildPythonPackage rec {
|
|||||||
install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libshm.dylib
|
install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libshm.dylib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Builds in 2+h with 2 cores, and ~15m with a big-parallel builder.
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Open source, prototype-to-production deep learning platform";
|
description = "Open source, prototype-to-production deep learning platform";
|
||||||
homepage = "https://pytorch.org/";
|
homepage = "https://pytorch.org/";
|
||||||
|
@ -70,6 +70,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
# Builds in 7+h with 2 cores, and ~20m with a big-parallel builder.
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://clickhouse.tech/";
|
homepage = "https://clickhouse.tech/";
|
||||||
description = "Column-oriented database management system";
|
description = "Column-oriented database management system";
|
||||||
|
@ -198,6 +198,9 @@ in rec {
|
|||||||
|
|
||||||
doCheck = false; # uses pip to install things from the internet
|
doCheck = false; # uses pip to install things from the internet
|
||||||
|
|
||||||
|
# Takes 7+h to build with 2 cores.
|
||||||
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
meta = getMeta "Distributed storage system";
|
meta = getMeta "Distributed storage system";
|
||||||
|
|
||||||
passthru.version = version;
|
passthru.version = version;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user