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/11/08 23:13:56 UTC

thrift git commit: .travis.yml: just use 2 cores

Repository: thrift
Updated Branches:
  refs/heads/master fed887f9d -> 71bd360f0


.travis.yml: just use 2 cores


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

Branch: refs/heads/master
Commit: 71bd360f048f087d00fffc77605eff22f223fcf4
Parents: fed887f
Author: Roger Meier <ro...@apache.org>
Authored: Sat Nov 8 23:13:13 2014 +0100
Committer: Roger Meier <ro...@apache.org>
Committed: Sat Nov 8 23:13:13 2014 +0100

----------------------------------------------------------------------
 .travis.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/71bd360f/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 63ae801..d829274 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,16 +48,16 @@ matrix:
       before_install:
        - 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 ..;
+       - make check -j2;
+       - mkdir build_native && cd build_native && cmake ../compiler/cpp/ && make -j2 && cd ..;
+       - mkdir build_mingw32 && cd build_mingw32 && cmake -DCMAKE_TOOLCHAIN_FILE=../contrib/mingw32-toolchain.cmake ../compiler/cpp/ && make -j2 && cd ..;
 
     - compiler: clang
       env: CONFIG="--disable-libs"
       before_install:
        - sh contrib/installCXXDependencies.sh;
       script:
-       - make check -j4;
+       - make check -j2;
 
 
 
@@ -72,7 +72,7 @@ install:
  - sh configure $CONFIG;
 
 script:
- - make -j4 && make dist;
- - make cross -j4;
+ - make -j2 && make dist;
+ - make cross -j2;
 # TODO: add these steps
 #  - sh bootstrap.sh ; dpkg-buildpackage -tc