colmena/integration-tests/default.nix

19 lines
665 B
Nix
Raw Normal View History

2023-01-28 07:44:41 +01:00
{ pkgs ? import ./nixpkgs.nix
, pkgsStable ? import ./nixpkgs-stable.nix
}:
2021-12-02 21:47:57 +01:00
{
2023-01-28 07:44:41 +01:00
apply = import ./apply { inherit pkgs; };
apply-streaming = import ./apply { inherit pkgs; evaluator = "streaming"; };
apply-local = import ./apply-local { inherit pkgs; };
build-on-target = import ./build-on-target { inherit pkgs; };
exec = import ./exec { inherit pkgs; };
flakes = import ./flakes { inherit pkgs; };
flakes-streaming = import ./flakes { inherit pkgs; evaluator = "streaming"; };
parallel = import ./parallel { inherit pkgs; };
2023-01-28 07:44:41 +01:00
allow-apply-all = import ./allow-apply-all { inherit pkgs; };
2023-01-28 07:44:41 +01:00
apply-stable = import ./apply { pkgs = pkgsStable; };
2021-12-02 21:47:57 +01:00
}