mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-15 12:15:56 +01:00
18 lines
399 B
Nix
18 lines
399 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
handleTestOn,
|
|
}:
|
|
|
|
let
|
|
supportedSystems = [
|
|
"x86_64-linux"
|
|
"i686-linux"
|
|
"aarch64-linux"
|
|
];
|
|
in
|
|
{
|
|
basic = handleTestOn supportedSystems ./basic.nix { inherit system; };
|
|
mruby = handleTestOn supportedSystems ./mruby.nix { inherit system; };
|
|
tls-recommendations = handleTestOn supportedSystems ./tls-recommendations.nix { inherit system; };
|
|
}
|