Skip to content

Commit 2d3109e

Browse files
committed
Turn all the CI back on
1 parent 4f7c67e commit 2d3109e

File tree

3 files changed

+30
-31
lines changed

3 files changed

+30
-31
lines changed

ci.nix

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@
6363
# from here (so that is no longer cached) also remove ./materialized/ghcXXX.
6464
# Update supported-ghc-versions.md to reflect any changes made here.
6565
nixpkgs.lib.optionalAttrs (builtins.elem nixpkgsName ["R2411" "R2505"]) {
66-
# ghc96 = false;
67-
# ghc98 = false;
68-
# ghc910 = false;
69-
# ghc912 = false;
66+
ghc96 = false;
67+
ghc98 = false;
68+
ghc910 = false;
69+
ghc912 = false;
7070
} // nixpkgs.lib.optionalAttrs (nixpkgsName == "unstable") {
71-
# ghc96 = true;
72-
# ghc98 = true;
73-
# ghc98llvm = false;
74-
# ghc910 = true;
75-
# ghc910llvm = false;
71+
ghc96 = true;
72+
ghc98 = true;
73+
ghc98llvm = false;
74+
ghc910 = true;
75+
ghc910llvm = false;
7676
ghc912 = true;
77-
# ghc912llvm = true;
78-
# ghc913 = true;
77+
ghc912llvm = true;
78+
ghc913 = true;
7979
})));
8080
crossSystems = nixpkgsName: nixpkgs: compiler-nix-name:
8181
# We need to use the actual nixpkgs version we're working with here, since the values

flake.nix

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@
101101

102102
# systems supported by haskell.nix
103103
systems = [
104-
# "x86_64-linux"
104+
"x86_64-linux"
105105
] ++ (if runningHydraEvalTest then [ ] else [
106-
# "x86_64-darwin"
106+
"x86_64-darwin"
107107
"aarch64-darwin"
108108
]);
109109

@@ -252,8 +252,8 @@
252252
cf.defaultNix.hydraJobs;
253253
in
254254
self.allJobs.${system}
255-
# // lib.optionalAttrs (ifdLevel > 2)
256-
# { nix-tools = nix-tools-hydraJobs.${system} or { }; }
255+
// lib.optionalAttrs (ifdLevel > 2)
256+
{ nix-tools = nix-tools-hydraJobs.${system} or { }; }
257257
);
258258

259259
devShells = forEachSystemPkgs (pkgs:
@@ -286,21 +286,21 @@
286286
(
287287
let pkgs = nixpkgs.legacyPackages."x86_64-linux"; in
288288
{
289-
# hydraJobs.nix-tools = pkgs.releaseTools.aggregate {
290-
# name = "nix-tools";
291-
# constituents = (if runningHydraEvalTest then [ ] else [
292-
# "aarch64-darwin.nix-tools.static.zipped.nix-tools-static"
293-
# "x86_64-darwin.nix-tools.static.zipped.nix-tools-static"
294-
# "aarch64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd"
295-
# "x86_64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd"
296-
# ]) ++ [
297-
# "x86_64-linux.nix-tools.static.zipped.nix-tools-static"
298-
# "x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64"
299-
# "x86_64-linux.nix-tools.static.zipped.nix-tools-static-no-ifd"
300-
# "x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64-no-ifd"
301-
# (pkgs.writeText "gitrev" (self.rev or "0000000000000000000000000000000000000000"))
302-
# ];
303-
# };
289+
hydraJobs.nix-tools = pkgs.releaseTools.aggregate {
290+
name = "nix-tools";
291+
constituents = (if runningHydraEvalTest then [ ] else [
292+
"aarch64-darwin.nix-tools.static.zipped.nix-tools-static"
293+
"x86_64-darwin.nix-tools.static.zipped.nix-tools-static"
294+
"aarch64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd"
295+
"x86_64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd"
296+
]) ++ [
297+
"x86_64-linux.nix-tools.static.zipped.nix-tools-static"
298+
"x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64"
299+
"x86_64-linux.nix-tools.static.zipped.nix-tools-static-no-ifd"
300+
"x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64-no-ifd"
301+
(pkgs.writeText "gitrev" (self.rev or "0000000000000000000000000000000000000000"))
302+
];
303+
};
304304
}
305305
)));
306306

test/cabal.project.local

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
-- Test IFDs 5
21
if impl(ghc>=9.12.1)
32
-- allow newer packages, that are bound to be newer due to
43
-- being shipped with a newer compiler. If you extend this

0 commit comments

Comments
 (0)