Skip to content

Commit

Permalink
Enable cmake for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andreww committed Dec 29, 2015
1 parent d2ad441 commit 5e8ec14
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,20 @@ addons:
- ubuntu-toolchain-r-test
packages:
- gfortran-4.9
- cmake

env:
matrix:
# Using configure and make, run the tests.
- >
BUILD_SCRIPT="FC='gfortran -fno-backtrace' ./configure &&
make -j 2 && make -j 2 check"
# Using cmake - just build, tests not working yet.
- >
BUILD_SCRIPT="mkdir cmake_build/ && cd cmake_build &&
cmake ../ && make -j 2"
install:
- |
if [[ ! -d "$HOME/.local/bin" ]]; then
Expand Down

0 comments on commit 5e8ec14

Please sign in to comment.