flake/ci: re-enable most tests on buildbot

Most still run on all platforms, but many now only run on x86_64-linux.
This commit is contained in:
Matt Sturgeon 2025-05-30 17:37:23 +01:00
parent 74e6ada9d1
commit 7d0ac00557
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 19 additions and 2 deletions

View file

@ -7,8 +7,15 @@
perSystem =
{ pkgs, ... }:
{
# TODO: consider whether all these tests are needed in the `checks` output
checks = pkgs.callPackages ../../tests {
inherit helpers self;
};
# TODO: consider whether all these tests are needed to be built by buildbot
ci.buildbot = pkgs.callPackages ../../tests {
inherit helpers self;
allSystems = false;
};
};
}