File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 41
41
echo "file binary-dist $out/${ drv . name } .zip" > $out/nix-support/hydra-build-products
42
42
'' ;
43
43
in makeBinDist pkgs . pkgsCross . mingwW64 . secp256k1 ;
44
+ # This job causes in eval if we include everything.
45
+ # For now just including some darwin checks (since thos are not done on cicero)
44
46
required = defaultNix . pkgs . releaseTools . aggregate {
45
47
name = "github-required" ;
46
48
meta . description = "All jobs required to pass CI" ;
47
- constituents = lib . collect lib . isDerivation {
48
- # linux-ghc8107 = jobs. x86_64-linux.required-unstable-ghc8107-native;
49
- darwin-ghc8107 = jobs . x86_64-darwin . required-unstable-ghc8107-native ;
50
- # linux -ghc924 = jobs.x86_64-linux .required-unstable-ghc924-native;
51
- darwin-ghc924 = jobs . x86_64-darwin . required-unstable-ghc924-native ;
52
- } ;
49
+ constituents = lib . collect lib . isDerivation (
50
+ lib . optionalAttrs ( jobs ? x86_64-darwin ) {
51
+ darwin-ghc8107 = jobs . x86_64-darwin . required-unstable-ghc8107-native ;
52
+ darwin -ghc924 = jobs . x86_64-darwin . required-unstable-ghc924-native ;
53
+ }
54
+ ) ;
53
55
} ;
54
56
in
55
57
traceNames "job " ( jobs // { inherit windows-secp256k1 required ; } )
You can’t perform that action at this time.
0 commit comments