diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·52+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·52+0000 |
commit | 77c64ed8f6a9dfae38b73409ad06d5317c671a29 (patch) | |
tree | 56f6cb6aad8fbbb6b683c8f70f04bf8449d33126 /default.nix | |
parent | 01bad09eedc97c1437b5bbe4910f6b3b13b23ca0 (diff) |
fix(build): Temporarily hardcode list of CI projects r/101
Due to a missing feature in readTree I can't currently generate this list automatically.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/default.nix b/default.nix index 2bab1cd29704..6652d7834da8 100644 --- a/default.nix +++ b/default.nix @@ -44,12 +44,20 @@ in fix(self: { config = config self; # Elevate 'lib' from nixpkgs - lib = self.third_party.nixpkgs.lib; + lib = import (self.third_party.nixpkgsSrc + "/lib"); # Collect all projects that should be built by CI - ciProjects = (filterCI self.lib self.services) - ++ (filterCI super.lib self.tools) - ++ (filterCI super.lib self.third_party); + # ciProjects = (filterCI self.lib self.services) + # ++ (filterCI super.lib self.tools) + # ++ (filterCI super.lib self.third_party); + # TODO(tazjin): re-enable automatic filtering for this, requires + # read-tree fixes + ciProjects = with self; [ + services.tazblog + services.nixcon-demo + tools.kms_pass + tools.blog_cli + ]; } # Add local packages as structured by readTree |