Unverified Commit ec5e9fa6 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge #229132: tarball job: tag both derivations as big-parallel

parents cdefca3d e471f696
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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; };

+7 −1
Original line number Diff line number Diff line
{ supportedSystems, nixpkgs, pkgs, nix }:

pkgs.runCommand "nixpkgs-release-checks" { src = nixpkgs; buildInputs = [nix]; } ''
pkgs.runCommand "nixpkgs-release-checks"
  {
    src = nixpkgs;
    buildInputs = [ nix ];
    requiredSystemFeatures = [ "big-parallel" ]; # 1 thread but ~10G RAM; see #227945
  }
  ''
    set -o pipefail

    export NIX_STORE_DIR=$TMPDIR/store