aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-03-13 18:34:10 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-03-13 18:34:10 +0100
commit5392884eb17db70a9fb2aa67fae486cda3c7ce92 (patch)
treeb01d6d13113b15a2ef1d85b165e1bef1694bf0bf
parenta692f90c80feb7ed9393a73d7ac8ff4e9675e425 (diff)
Remove the 'release' job
Unless the 'tested' job in the Nixpkgs/NixOS jobsets, this job isn't actually used for anything (e.g. we don't update a channel based on whether 'release' succeeds).
-rw-r--r--release.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/release.nix b/release.nix
index be9f8b981..9b591229a 100644
--- a/release.nix
+++ b/release.nix
@@ -337,29 +337,6 @@ let
echo "file installer $out/install" >> $out/nix-support/hydra-build-products
'';
-
- # Aggregate job containing the release-critical jobs.
- release = pkgs.releaseTools.aggregate {
- name = "nix-${version}";
- meta.description = "Release-critical builds";
- constituents =
- [ build.i686-linux
- build.x86_64-darwin
- build.x86_64-linux
- build.aarch64-linux
- binaryTarball.i686-linux
- binaryTarball.x86_64-darwin
- binaryTarball.x86_64-linux
- binaryTarball.aarch64-linux
- tests.remoteBuilds
- tests.nix-copy-closure
- tests.binaryTarball
- #tests.evalNixpkgs
- #tests.evalNixOS
- installerScript
- ];
- };
-
};