Skip to content

Commit d17f385

Browse files
committed
Just test a small subset of the full CI
1 parent 44db6a3 commit d17f385

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
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: 4 additions & 4 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:

0 commit comments

Comments
 (0)