diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2019-10-31 16:34:59 +0000 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2019-10-31 16:37:33 +0000 |
commit | f1782642d363330b9ce8607d942dcbb47414bf82 (patch) | |
tree | 980357f265b8a74ce96b1be432669d44322cd331 /.travis.yml | |
parent | 6bff1aa46dbac3a64c1145bed76ca67f0eb6da5f (diff) |
travis: enable linux builds
Also disable email to not notify the whole NixOS community about build failures
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 99218a963..ee4ea1ac6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,8 @@ -os: osx -script: ./tests/install-darwin.sh +matrix: + include: + - language: osx + script: ./tests/install-darwin.sh + - language: nix + script: nix-build release.nix -A build.x86_64-linux +notifications: + email: false |