Revert "Revert "release: add tests.packageTestsForChannelBlockers.curl.withCh…"
This commit is contained in:
parent
32046b860e
commit
d938f94279
4 changed files with 12 additions and 0 deletions
|
@ -156,6 +156,7 @@ in rec {
|
||||||
(onSystems ["i686-linux"] "nixos.tests.zfs.installer")
|
(onSystems ["i686-linux"] "nixos.tests.zfs.installer")
|
||||||
(onFullSupported "nixpkgs.emacs")
|
(onFullSupported "nixpkgs.emacs")
|
||||||
(onFullSupported "nixpkgs.jdk")
|
(onFullSupported "nixpkgs.jdk")
|
||||||
|
(onFullSupported "nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck")
|
||||||
["nixpkgs.tarball"]
|
["nixpkgs.tarball"]
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -120,6 +120,7 @@ in rec {
|
||||||
"nixos.tests.proxy.x86_64-linux"
|
"nixos.tests.proxy.x86_64-linux"
|
||||||
"nixos.tests.simple.x86_64-linux"
|
"nixos.tests.simple.x86_64-linux"
|
||||||
"nixpkgs.jdk.x86_64-linux"
|
"nixpkgs.jdk.x86_64-linux"
|
||||||
|
"nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-linux"
|
||||||
"nixpkgs.tarball"
|
"nixpkgs.tarball"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -24,6 +24,14 @@ with pkgs;
|
||||||
|
|
||||||
config = callPackage ./config.nix { };
|
config = callPackage ./config.nix { };
|
||||||
|
|
||||||
|
# we can't add 'nixpkgs.curl.tests' to hydra jobs due to 'tests' (and 'passthru') being stripped
|
||||||
|
# TODO: add a function in lib-release.nix to get derivations and add `.x86_64-linux` to them
|
||||||
|
# then we can just point release files to nixpkgs.tests.packageTestsForChannelBlockers instead of
|
||||||
|
# nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck
|
||||||
|
packageTestsForChannelBlockers = recurseIntoAttrs {
|
||||||
|
curl = recurseIntoAttrs pkgs.curl.tests;
|
||||||
|
};
|
||||||
|
|
||||||
haskell = callPackage ./haskell { };
|
haskell = callPackage ./haskell { };
|
||||||
|
|
||||||
cc-multilib-gcc = callPackage ./cc-wrapper/multilib.nix { stdenv = gccMultiStdenv; };
|
cc-multilib-gcc = callPackage ./cc-wrapper/multilib.nix { stdenv = gccMultiStdenv; };
|
||||||
|
|
|
@ -97,6 +97,7 @@ let
|
||||||
jobs.lib-tests
|
jobs.lib-tests
|
||||||
jobs.pkgs-lib-tests
|
jobs.pkgs-lib-tests
|
||||||
jobs.stdenv.x86_64-linux
|
jobs.stdenv.x86_64-linux
|
||||||
|
jobs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-linux
|
||||||
jobs.cargo.x86_64-linux
|
jobs.cargo.x86_64-linux
|
||||||
jobs.go.x86_64-linux
|
jobs.go.x86_64-linux
|
||||||
jobs.linux.x86_64-linux
|
jobs.linux.x86_64-linux
|
||||||
|
@ -133,6 +134,7 @@ let
|
||||||
++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools
|
++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools
|
||||||
++ lib.optionals supportDarwin.x86_64 [
|
++ lib.optionals supportDarwin.x86_64 [
|
||||||
jobs.stdenv.x86_64-darwin
|
jobs.stdenv.x86_64-darwin
|
||||||
|
jobs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-darwin
|
||||||
jobs.cargo.x86_64-darwin
|
jobs.cargo.x86_64-darwin
|
||||||
jobs.cachix.x86_64-darwin
|
jobs.cachix.x86_64-darwin
|
||||||
jobs.go.x86_64-darwin
|
jobs.go.x86_64-darwin
|
||||||
|
|
Loading…
Reference in a new issue