aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6795a2e1837769a922224942177ae47d129c88cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: cpp

addons:
  apt:
    sources:
      - george-edison55-precise-backports # cmake
    packages:
      - cmake
      - cmake-data
      - gfortran

os:
  - linux
  - osx

script:
  - cmake -DCMAKE_INSTALL_PREFIX=~/.local -DLAPACKE=ON -DCBLAS=ON .
  - make install -j2 && ctest -j2 --output-on-failure --timeout 100