From e9431682b2da6fc5085961e42b654bb8b833b879 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 9 Dec 2019 10:58:09 +0000 Subject: refactor: Move CI setup to separate Nix file Instead of polluting the repository namespace with the list of CI projects, move that to a separate file. Currently the list of projects to be built by CI is still hardcoded, but this will be fixed soon. --- ci-builds.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ci-builds.nix (limited to 'ci-builds.nix') diff --git a/ci-builds.nix b/ci-builds.nix new file mode 100644 index 0000000000..916317ea56 --- /dev/null +++ b/ci-builds.nix @@ -0,0 +1,17 @@ +# This file is invoked by the CI build and recursively filters the +# package set for attributes that should be built automatically. +# +# Packages can be opted-in to being built by CI by setting +# `meta.enableCI = true`. +# +# TODO(tazjin): Actually implement the above. + +let + pkgs = import ./default.nix; +in with pkgs; [ + services.tazblog + services.nixcon-demo + tools.kms_pass + tools.blog_cli +] + -- cgit 1.4.1