Bump timeout and lower jobs on OSX

This commit is contained in:
Patrick Niklaus 2016-05-05 17:12:22 +02:00
parent 238366e71f
commit 497720d060
No known key found for this signature in database
GPG Key ID: E426891B5F978B1B

View File

@ -22,7 +22,7 @@ env:
global:
- CCACHE_TEMPDIR=/tmp/.ccache-temp
- CCACHE_COMPRESS=1
- JOBS=3
- JOBS=4
matrix:
fast_finish: true
@ -58,7 +58,7 @@ matrix:
- os: osx
osx_image: xcode7.3
compiler: clang
env: CCOMPILER='clang' CXXCOMPILER='clang++' BUILD_TYPE='Debug'
env: CCOMPILER='clang' CXXCOMPILER='clang++' BUILD_TYPE='Debug' JOBS=1
# Release Builds
- os: linux
@ -134,7 +134,7 @@ install:
fi
- mkdir build && pushd build
- export CC=${CCOMPILER} CXX=${CXXCOMPILER}
- export OSRM_PORT=5000 OSRM_TIMEOUT=6000
- export OSRM_PORT=5000 OSRM_TIMEOUT=10000
- cmake .. -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS:-OFF} -DCOVERAGE=${COVERAGE:-OFF} -DBUILD_TOOLS=1 -DENABLE_CCACHE=ON
- echo "travis_fold:start:MAKE"
- make --jobs=${JOBS}