Skip to content

Commit 503429e

Browse files
committed
add all the buildkite shell dependencies to hydra
1 parent cbf21d2 commit 503429e

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

flake.nix

+16-12
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,20 @@
4040
pkgs = pkgsForSystem system;
4141
legacyPackages = pkgs;
4242

43-
defaultPackage = pkgs.mantis;
44-
devShell = pkgs.mkShell {
45-
nativeBuildInputs = with pkgs; [ solc sbt ];
46-
};
47-
apps.mantis = flake-utils.lib.mkApp { drv = pkgs.mantis; };
48-
defaultApp = apps.mantis;
49-
}) // (collectHydraSets [
50-
(mkHydraSet [ "mantis" ] [ "x86_64-linux" ])
51-
(mkHydraSet [ "mantis-entrypoint" ] [ "x86_64-linux" ])
52-
(mkHydraSet [ "retesteth" ] [ "x86_64-linux" ])
53-
(mkHydraSet [ "lllc" ] [ "x86_64-linux" ])
54-
]);
43+
defaultPackage = pkgs.mantis;
44+
devShell = pkgs.mkShell { nativeBuildInputs = with pkgs; [ solc sbt ]; };
45+
apps.mantis = flake-utils.lib.mkApp { drv = pkgs.mantis; };
46+
defaultApp = apps.mantis;
47+
}) // (collectHydraSets
48+
(map (name: mkHydraSet [ name ] [ "x86_64-linux" ]) [
49+
"jdk8"
50+
"lllc"
51+
"mantis"
52+
"mantis-entrypoint"
53+
"netcat-gnu"
54+
"protoc-wrapper"
55+
"retesteth"
56+
"sbt"
57+
"solc"
58+
]));
5559
}

0 commit comments

Comments
 (0)