summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2014-11-08 23:13:13 +0100
committerRoger Meier <roger@apache.org>2014-11-08 23:13:13 +0100
commit71bd360f048f087d00fffc77605eff22f223fcf4 (patch)
tree61addc76593ebee77fe4771fa88e38c074ebbe60 /.travis.yml
parentfed887f9d9f563c123acafec9a0335e325e74a51 (diff)
downloadthrift-71bd360f048f087d00fffc77605eff22f223fcf4.tar.gz
.travis.yml: just use 2 cores
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 63ae80145..d82927479 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