Skip to content

Commit

Permalink
test travis env global with -j2 for all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc authored Apr 16, 2017
1 parent 1ce21ff commit 63144a8
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,28 @@ install:
script:
- bash .travis.sh

env:
global:
- MAKEFLAGS="-j 2"
- CCACHE_SLOPPINESS=pch_defines,time_macros

matrix:
include:
- compiler: gcc
os: linux
env: TASK="build" CCACHE_SLOPPINESS=pch_defines,time_macros
env: TASK="build"
- compiler: gcc
os: linux
env: TASK="test" CCACHE_SLOPPINESS=pch_defines,time_macros
env: TASK="test"
- compiler: clang
os: linux
env: TASK="build" CCACHE_SLOPPINESS=pch_defines,time_macros
env: TASK="build"
- compiler: clang
os: linux
env: TASK="test" CCACHE_SLOPPINESS=pch_defines,time_macros
env: TASK="test"
- compiler: gcc
os: osx
env: TASK="test" CCACHE_SLOPPINESS=pch_defines,time_macros
env: TASK="test"
- compiler: clang
os: osx
env: TASK="test" CCACHE_SLOPPINESS=pch_defines,time_macros
env: TASK="test"

0 comments on commit 63144a8

Please sign in to comment.