lol

Merge pull request #181221 from NixOS/revert-181214-revertcurltestfornow

authored by

Artturi and committed by
GitHub
b2fe1ecd 32046b86

+12
+1
nixos/release-combined.nix
··· 156 156 (onSystems ["i686-linux"] "nixos.tests.zfs.installer") 157 157 (onFullSupported "nixpkgs.emacs") 158 158 (onFullSupported "nixpkgs.jdk") 159 + (onFullSupported "nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck") 159 160 ["nixpkgs.tarball"] 160 161 ]; 161 162 };
+1
nixos/release-small.nix
··· 120 120 "nixos.tests.proxy.x86_64-linux" 121 121 "nixos.tests.simple.x86_64-linux" 122 122 "nixpkgs.jdk.x86_64-linux" 123 + "nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-linux" 123 124 "nixpkgs.tarball" 124 125 ]; 125 126 };
+8
pkgs/test/default.nix
··· 24 24 25 25 config = callPackage ./config.nix { }; 26 26 27 + # we can't add 'nixpkgs.curl.tests' to hydra jobs due to 'tests' (and 'passthru') being stripped 28 + # TODO: add a function in lib-release.nix to get derivations and add `.x86_64-linux` to them 29 + # then we can just point release files to nixpkgs.tests.packageTestsForChannelBlockers instead of 30 + # nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck 31 + packageTestsForChannelBlockers = recurseIntoAttrs { 32 + curl = recurseIntoAttrs pkgs.curl.tests; 33 + }; 34 + 27 35 haskell = callPackage ./haskell { }; 28 36 29 37 cc-multilib-gcc = callPackage ./cc-wrapper/multilib.nix { stdenv = gccMultiStdenv; };
+2
pkgs/top-level/release.nix
··· 97 97 jobs.lib-tests 98 98 jobs.pkgs-lib-tests 99 99 jobs.stdenv.x86_64-linux 100 + jobs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-linux 100 101 jobs.cargo.x86_64-linux 101 102 jobs.go.x86_64-linux 102 103 jobs.linux.x86_64-linux ··· 133 134 ++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools 134 135 ++ lib.optionals supportDarwin.x86_64 [ 135 136 jobs.stdenv.x86_64-darwin 137 + jobs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-darwin 136 138 jobs.cargo.x86_64-darwin 137 139 jobs.cachix.x86_64-darwin 138 140 jobs.go.x86_64-darwin