nix-gitlab-ci/lib/impl/default.nix
Jairo Llopis 70dc878112
fix: pipelines can have either trigger or script
They canno thave both, so here I add assertions support and use them to avoid this case.
2026-05-13 08:53:15 +01:00

12 lines
426 B
Nix

{
pkgs,
lib,
cilib,
}: rec {
helpers = import ./helpers.nix {inherit lib pkgs;};
mkJobDeps = import ./jobDeps.nix {inherit lib helpers;};
mkJobRun = import ./jobRun.nix {inherit lib pkgs helpers;};
mkJobPatched = import ./jobPatched.nix {inherit lib helpers;};
mkPipeline = import ./pipeline.nix {inherit lib helpers mkJobDeps mkJobRun mkJobPatched;};
modules = import ./modules {inherit lib pkgs cilib;};
}