fix(build): Temporarily hardcode list of CI projects
Due to a missing feature in readTree I can't currently generate this list automatically.
This commit is contained in:
parent
01bad09eed
commit
77c64ed8f6
1 changed files with 12 additions and 4 deletions
16
default.nix
16
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
|
||||
|
|
Loading…
Reference in a new issue