about summary refs log tree commit diff
path: root/pkgs/top-level/make-tarball.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-04-30 15:26:22 +0200
committerVladimír Čunát <v@cunat.cz>2023-04-30 15:26:22 +0200
commite471f6963fe60c3315e25afc98a16e180cad5a10 (patch)
treee815827b4e70b5553b9b14af6e3738150e0e6197 /pkgs/top-level/make-tarball.nix
parent34966783042097b037f57c911290d6729fa75d0c (diff)
tarball job: tag both derivations as big-parallel
The aim here is to avoid exhausting RAM of our normal machines
on hydra.nixos.org.  See #227945 for details.
Diffstat (limited to 'pkgs/top-level/make-tarball.nix')
-rw-r--r--pkgs/top-level/make-tarball.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix
index ea975a9b6fcc6..abc121e29dc75 100644
--- a/pkgs/top-level/make-tarball.nix
+++ b/pkgs/top-level/make-tarball.nix
@@ -32,6 +32,8 @@ pkgs.releaseTools.sourceTarball {
     echo "git-revision is $(cat .git-revision)"
   '';
 
+  requiredSystemFeatures = [ "big-parallel" ]; # 1 thread but ~36G RAM (!) see #227945
+
   nixpkgs-basic-release-checks = import ./nixpkgs-basic-release-checks.nix
    { inherit nix pkgs nixpkgs supportedSystems; };