File: .travis.yml

package info (click to toggle)
madness 0.10.1%2Bgit20200818.eee5fd9f-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 34,980 kB
  • sloc: cpp: 280,841; ansic: 12,626; python: 4,961; fortran: 4,245; xml: 1,053; makefile: 714; sh: 276; perl: 244; yacc: 227; lex: 188; asm: 141; csh: 55
file content (46 lines) | stat: -rw-r--r-- 1,118 bytes parent folder | download | duplicates (2)
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
language: cpp
dist: bionic
os:
  - linux
compiler:
  - gcc
  - clang
env:
  - RUN_TEST=all
  - RUN_TEST=mra CMAKE_EXTRA_OPTIONS="-D ENABLE_GENTENSOR=1"
# MRA testsuite segfaults a la https://travis-ci.org/github/m-a-d-n-e-s-s/madness/jobs/665937224#L10269 ... can't reproduce, giving up
#  - RUN_TEST=all BUILD_SHARED=1
matrix:
  exclude:
    - os: linux
      compiler: clang
      env: RUN_TEST=mra CMAKE_EXTRA_OPTIONS="-D ENABLE_GENTENSOR=1"
sudo: false
addons:
  apt:
    update: true
    packages:
      - gcc-8
      - g++-8
      - gfortran-8
      - libblas-dev
      - liblapack-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
    - /opt/intel