From 3a79e8b932decec8e238339c80fe7c0516178856 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 22 Sep 2019 17:19:13 +0100 Subject: refactor(build): Add ciProjects attribute for CI builds This attribute contains a list of all derivations that should be built by the CI for this repository. This includes all of my own packages that are not marked as broken, as well as select third-party packages. --- default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'default.nix') diff --git a/default.nix b/default.nix index 8d0ea7e7b5..2b822e7e43 100644 --- a/default.nix +++ b/default.nix @@ -77,6 +77,14 @@ let inherit (self) lib; inherit (super) lispPackages; }; + + # All projects that should be built by CI should be added here: + ciProjects = [ + self.kontemplate + self.nixery + self.ormolu + self.terraform-gcp + ] ++ filter (d: d ? meta.broken && !d.meta.broken) (attrValues self.tazjin); }; in { ... } @ args: import stableSrc (args // { -- cgit 1.4.1