From 6472b2645cba9819e0c8171e69367916a42f0a1b Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 2 Sep 2019 16:38:59 +0100 Subject: feat: Add Travis CI configuration Adds a configuration that builds all of my own services and pushes the resulting closures to Cachix. --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..eace0ae15b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: nix +env: + - NIX_PATH="nixpkgs=${TRAVIS_BUILD_DIR}" +before_script: + - nix-env -f '' -iA 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 tazjin | cachix push tazjin -- cgit 1.4.1