diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index db2c5035599c..bd2c6012fb0b 100644 --- a/default.nix +++ b/default.nix @@ -65,10 +65,10 @@ let # To determine build targets, we walk through the depot tree and # fetch attributes that were imported by readTree and are buildable. # - # Any build target that contains `meta.ci = false` will be skipped. + # Any build target that contains `meta.ci.skip = true` will be skipped. # Is this tree node eligible for build inclusion? - eligible = node: (node ? outPath) && (node.meta.ci or true); + eligible = node: (node ? outPath) && (!node.meta.ci.skip or true); in readTree.fix(self: (readDepot { depot = self; |