Skip to content

Commit 460ec2c

Browse files
authored
Merge pull request #35 from Bootstrap-Academy/buildbot
Add buildbot
2 parents cfe6879 + 65bd2d0 commit 460ec2c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

flake.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
eachDefaultSystem = lib.genAttrs [
2323
"x86_64-linux"
24-
"aarch64-linux"
24+
"aarch64-linux" # untested
2525
];
2626

2727
importNixpkgs = system: import nixpkgs {inherit system;};
@@ -49,6 +49,12 @@
4949
});
5050

5151
formatter = eachDefaultSystem (system: (importNixpkgs system).alejandra);
52+
53+
checks = let
54+
checks = builtins.mapAttrs (_: packages: builtins.removeAttrs packages ["tests" "devShell" "devenv-up"]) self.packages;
55+
in {
56+
inherit (checks) x86_64-linux;
57+
};
5258
};
5359

5460
nixConfig = {

0 commit comments

Comments
 (0)