nix-gitlab-ci/lib/impl/modules/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

33 lines
539 B
Nix

{
lib,
pkgs,
cilib,
}: rec {
inherit
(import ./root.nix {
inherit lib pkgs pipelineSubmodule soonixSubmodule;
})
configSubmodule
nixCiSubmodule
;
inherit
(import ./pipeline.nix {
inherit lib pkgs cilib jobSubmodule;
})
pipelineConfigSubmodule
pipelineSubmodule
;
inherit
(import ./job.nix {
inherit lib pkgs cilib;
})
jobConfigSubmodule
jobSubmodule
;
inherit
(import ./soonix.nix {
inherit lib cilib;
})
soonixSubmodule
;
}