Skip to content

Commit d4c52ac

Browse files
committed
Put non aggregated jobs again
1 parent e43ddeb commit d4c52ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

release.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ let
2323
let ghcMatch = __match ".*-(ghc[0-9]*)-.*" n;
2424
in
2525
lib.optionalAttrs (
26-
n != "latest"
27-
&& (ghcMatch != null && include (__head ghcMatch))) jobs) system));
26+
(n == "latest" && include "ghc8107")
27+
|| (ghcMatch != null && include (__head ghcMatch))) jobs) system));
2828

2929
jobs = lib.getAttrs supportedSystems (filterCiJobs defaultNix.ciJobs);
3030

@@ -47,4 +47,4 @@ let
4747
constituents = lib.collect lib.isDerivation jobs;
4848
};
4949
in
50-
traceNames "job " ({ inherit jobs windows-secp256k1; })
50+
traceNames "job " (jobs // { inherit windows-secp256k1; })

0 commit comments

Comments
 (0)