From 9ac4ee8e9937d9a1c02d2499a76b7b2c4e467718 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 12 Jul 2014 11:18:25 +0300 Subject: [PATCH] .travis.yml: enable fast-finish If I understand correctly, this makes the build fail when one build fails without having to wait for all builds to finish. This might abort building for those which haven't finished yet, but we probably want to know that build fails as soon as one build fails. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9c2cfaecf..085aa67cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,3 +19,5 @@ after_success: notifications: on_success: never on_failure: never +matrix: + fast_finish: true