We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43ddeb commit d4c52acCopy full SHA for d4c52ac
release.nix
@@ -23,8 +23,8 @@ let
23
let ghcMatch = __match ".*-(ghc[0-9]*)-.*" n;
24
in
25
lib.optionalAttrs (
26
- n != "latest"
27
- && (ghcMatch != null && include (__head ghcMatch))) jobs) system));
+ (n == "latest" && include "ghc8107")
+ || (ghcMatch != null && include (__head ghcMatch))) jobs) system));
28
29
jobs = lib.getAttrs supportedSystems (filterCiJobs defaultNix.ciJobs);
30
@@ -47,4 +47,4 @@ let
47
constituents = lib.collect lib.isDerivation jobs;
48
};
49
50
- traceNames "job " ({ inherit jobs windows-secp256k1; })
+ traceNames "job " (jobs // { inherit windows-secp256k1; })
0 commit comments