diff options
author | Vincent Ambo <tazjin@google.com> | 2019-11-15T23·25+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-11-15T23·25+0000 |
commit | 45d63bce1728589836079ecbce83c08f8220845a (patch) | |
tree | f52007db7475f2ed3d85fec5236bc9380335af00 /services | |
parent | c1c379848a19a31de8febb1385c7b9e4d2a474a3 (diff) |
feat(nix): Filter projects that should be built by CI
Instead of specifying CI projects manually, this filters them to move the CI configuration into the derivations `meta` attributes.
Diffstat (limited to 'services')
-rw-r--r-- | services/tazblog/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/tazblog/default.nix b/services/tazblog/default.nix index 2e75c3c2dce1..4d9608838d7c 100644 --- a/services/tazblog/default.nix +++ b/services/tazblog/default.nix @@ -14,4 +14,5 @@ let ''; in wrapper.overrideAttrs(_: { allowSubstitutes = true; + meta.enableCI = true; }) |