Skip to content

Commit

Permalink
Merge pull request diffblue#1600 from diffblue/chrisr-diffblue/ccache…
Browse files Browse the repository at this point in the history
…-fixups

Fixups for ccache configuration in travis
  • Loading branch information
Daniel Kroening authored Nov 18, 2017
2 parents 62b52ba + fb493da commit 645f631
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,17 +177,24 @@ jobs:
packages:
- g++-5
install:
- ccache -z
- ccache --max-size=1G
- cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_CXX_COMPILER=g++-5'
- cmake --build build -- -j4
script: (cd build; ctest -V -L CORE)

- stage: Test different OS/CXX/Flags
os: osx
cache: ccache
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache
- export PATH=/usr/local/opt/ccache/libexec:$PATH
env:
- BUILD_SYSTEM=cmake
- CCACHE_CPP2=yes
install:
- ccache -z
- ccache --max-size=1G
- cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_OSX_ARCHITECTURES=x86_64'
- cmake --build build -- -j4
script: (cd build; ctest -V -L CORE)
Expand Down Expand Up @@ -235,6 +242,7 @@ jobs:
- <<: *linter-stage

install:
- ccache -z
- ccache --max-size=1G
- make -C src minisat2-download
- make -C src/ansi-c library_check
Expand Down

0 comments on commit 645f631

Please sign in to comment.