From 5392884eb17db70a9fb2aa67fae486cda3c7ce92 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <edolstra@gmail.com>
Date: Fri, 13 Mar 2020 18:34:10 +0100
Subject: [PATCH] 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).
---
 release.nix | 23 -----------------------
 1 file changed, 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
-        ];
-    };
-
   };
 
 
-- 
GitLab