diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-09T10·58+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-09T10·58+0000 |
commit | e9431682b2da6fc5085961e42b654bb8b833b879 (patch) | |
tree | a5cbac7bffbbc5a777b4a2dd9eb895cf76ac94a3 /.travis.yml | |
parent | a1ac598fa0782e22c9fb9c27719a50e543757f41 (diff) |
refactor: Move CI setup to separate Nix file r/111
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.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 6a47fc1d704d..2ab57adb5906 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,4 @@ before_script: - nix-env -f '<nixpkgs>' -iA third_party.cachix - cachix use tazjin script: - # All of my own tools are under the top-level 'tazjin' attribute - # set, this command will build all of them. - - nix-build -A ciProjects | cachix push tazjin + - nix-build ci-builds.nix | cachix push tazjin |