Loading pkgs/top-level/make-tarball.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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; }; Loading pkgs/top-level/nixpkgs-basic-release-checks.nix +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 Loading Loading
pkgs/top-level/make-tarball.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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; }; Loading
pkgs/top-level/nixpkgs-basic-release-checks.nix +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 Loading