You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2014/09/22 23:38:44 UTC

git commit: THRIFT-2711 - proper build result returned from Travis

Repository: thrift
Updated Branches:
  refs/heads/master be8326d58 -> 4ab18cef7


THRIFT-2711 - proper build result returned from Travis

Travis will properly mark build as failed


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/4ab18cef
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/4ab18cef
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/4ab18cef

Branch: refs/heads/master
Commit: 4ab18cef740941fff5b8477d715994fd44bfe2df
Parents: be8326d
Author: Konrad Grochowski <hc...@minions.org.pl>
Authored: Tue Sep 16 20:19:56 2014 +0200
Committer: Roger Meier <ro...@apache.org>
Committed: Mon Sep 22 23:38:29 2014 +0200

----------------------------------------------------------------------
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/4ab18cef/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 93f0a03..63ae801 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -49,8 +49,8 @@ matrix:
        - sh contrib/installCXXDependencies.sh;
       script:
        - make check -j4;
-       - mkdir build_native && cd build_native && cmake ../compiler/cpp/ && make -j4; cd ..;
-       - mkdir build_mingw32 && cd build_mingw32 && cmake -DCMAKE_TOOLCHAIN_FILE=../contrib/mingw32-toolchain.cmake ../compiler/cpp/ && make -j4; cd ..;
+       - mkdir build_native && cd build_native && cmake ../compiler/cpp/ && make -j4 && cd ..;
+       - mkdir build_mingw32 && cd build_mingw32 && cmake -DCMAKE_TOOLCHAIN_FILE=../contrib/mingw32-toolchain.cmake ../compiler/cpp/ && make -j4 && cd ..;
 
     - compiler: clang
       env: CONFIG="--disable-libs"