Skip to content

Commit

Permalink
delete cmake cache on each build test
Browse files Browse the repository at this point in the history
  • Loading branch information
antony-jr committed Jul 13, 2019
1 parent acf20bd commit 7cf95f3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,19 @@ script:
- mkdir build-cmake ; cd build-cmake # Check if it builds as a library using cmake.
- cmake ..
- make -j$(nproc)
- make clean
- cd ..
- rm -rf build-cmake
- mkdir build-cmake ; cd build-cmake
- cmake -DLOGGING_DISABLED=ON ..
- make -j$(nproc)
- make clean
- cd ..
- rm -rf build-cmake
- mkdir build-cmake ; cd build-cmake
- cmake -DNO_GUI=ON ..
- make -j$(nproc)
- make clean
- cd ..
- rm -rf build-cmake
- mkdir build-cmake ; cd build-cmake
- cmake -DLOGGING_DISABLED=ON -DNO_GUI=ON ..
- make -j$(nproc)
- cd ..
Expand Down

0 comments on commit 7cf95f3

Please sign in to comment.