Skip to content

Commit

Permalink
.travis.yml: only use 3 threads for make
Browse files Browse the repository at this point in the history
Maybe this fixes the Travis CI build errors.
  • Loading branch information
maxteufel committed Mar 22, 2015
1 parent 59efbd7 commit b2558a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -41,13 +41,13 @@ before_install:

# CMake
- wget http://www.cmake.org/files/v3.2/cmake-$CMAKE_VERSION.tar.gz -O - | tar xz
- (cd cmake-$CMAKE_VERSION && cmake . && make -j5 && sudo make install)
- (cd cmake-$CMAKE_VERSION && cmake . && make -j3 && sudo make install)

# SDL dependencies
- wget http://libsdl.org/release/SDL2-$SDL2_VERSION.tar.gz -O - | tar xz
- (cd SDL2-$SDL2_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install)
- (cd SDL2-$SDL2_VERSION && ./configure --prefix=/usr && make -j3 && sudo make install)
- wget http://www.libsdl.org/projects/SDL_image/release/SDL2_image-$SDL2IMAGE_VERSION.tar.gz -O - | tar xz
- (cd SDL2_image-$SDL2IMAGE_VERSION && ./configure --prefix=/usr && make -j5 && sudo make install)
- (cd SDL2_image-$SDL2IMAGE_VERSION && ./configure --prefix=/usr && make -j3 && sudo make install)

script:
# Clean from previous Travis build
Expand All @@ -56,7 +56,7 @@ script:
- mkdir "build-$BUILD_TYPE"
- cd "build-$BUILD_TYPE"
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- make VERBOSE=1 -j $(nproc)
- make VERBOSE=1 -j3

addons:
coverity_scan:
Expand All @@ -65,7 +65,7 @@ addons:
description: "Build submitted via Travis CI"
notification_email: supertux-commit@lists.lethargik.org
build_command_prepend: "cmake . && make clean"
build_command: "make -j 4"
build_command: "make -j 3"
branch_pattern: coverity_scan

notifications:
Expand Down

0 comments on commit b2558a8

Please sign in to comment.