forked from m-a-d-n-e-s-s/madness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (47 loc) · 1.01 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
language: cpp
dist: xenial
os:
- linux
compiler:
- gcc
- clang
env:
- RUN_TEST=all
- RUN_TEST=mra CMAKE_EXTRA_OPTIONS="-D ENABLE_GENTENSOR=1"
matrix:
exclude:
- os: linux
compiler: clang
env: RUN_TEST=mra CMAKE_EXTRA_OPTIONS="-D ENABLE_GENTENSOR=1"
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-7
update: true
packages:
- gcc-8
- g++-8
- gfortran-8
- libblas-dev
- liblapack-dev
- libtbb-dev
# if necessary to debug the install step, move all lines into
# script step and add appropriate debugging analysis to the
# after_failure step e.g. find . -name config.log -exec cat {} ";"
install:
- ./ci/dep-$TRAVIS_OS_NAME.sh
script:
- ./ci/build-$TRAVIS_OS_NAME.sh
after_failure:
- cat ./build/config.log
- cat ./build/CMakeFiles/CMakeError.log
- cat ./build/CMakeFiles/CMakeOutput.log
cache: ccache
cache:
directories:
- $HOME/mpich
- $HOME/libxc
- $HOME/ccache
- $HOME/cereal