colmena/integration-tests/default.nix
NeverBehave dd7a2924ca feat(meta): add disallowApplyAll options
unify meta access for machinesFile

update release note and config name
2022-06-20 18:47:53 -07:00

18 lines
547 B
Nix

{
apply = import ./apply {};
apply-streaming = import ./apply { evaluator = "streaming"; };
apply-local = import ./apply-local {};
build-on-target = import ./build-on-target {};
exec = import ./exec {};
flakes = import ./flakes {};
flakes-streaming = import ./flakes { evaluator = "streaming"; };
parallel = import ./parallel {};
allow-apply-all = import ./allow-apply-all {};
apply-stable = let
test = import ./apply { pkgs = import ./nixpkgs-stable.nix; };
in test.override (old: {
name = "apply-stable";
});
}