2024-10-18 09:44:59 +01:00
|
|
|
{
|
|
|
|
self,
|
|
|
|
helpers,
|
|
|
|
...
|
|
|
|
}:
|
2024-05-05 19:39:35 +02:00
|
|
|
{
|
|
|
|
perSystem =
|
2025-01-19 12:55:15 +00:00
|
|
|
{ pkgs, ... }:
|
2024-05-05 19:39:35 +02:00
|
|
|
{
|
2025-05-30 17:37:23 +01:00
|
|
|
# TODO: consider whether all these tests are needed in the `checks` output
|
2025-02-22 16:02:13 +00:00
|
|
|
checks = pkgs.callPackages ../../tests {
|
2025-01-19 12:55:15 +00:00
|
|
|
inherit helpers self;
|
2024-10-18 09:44:59 +01:00
|
|
|
};
|
2025-05-30 17:37:23 +01:00
|
|
|
|
|
|
|
# TODO: consider whether all these tests are needed to be built by buildbot
|
|
|
|
ci.buildbot = pkgs.callPackages ../../tests {
|
|
|
|
inherit helpers self;
|
|
|
|
allSystems = false;
|
|
|
|
};
|
2024-01-06 17:57:24 +01:00
|
|
|
};
|
2023-12-06 13:09:26 +01:00
|
|
|
}
|