-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
38 lines (33 loc) · 1.03 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
branches:
only:
- master
notifications:
email: false
language: c++
sudo: false
matrix:
include:
- env: COMPILER=g++-4.8
addons: {apt: {packages: [g++-4.8], sources: [ubuntu-toolchain-r-test]}}
- env: COMPILER=g++-5
addons: {apt: {packages: [g++-5], sources: [ubuntu-toolchain-r-test]}}
- env: COMPILER=clang++-3.6
addons: {apt: {packages: [clang-3.6], sources: [ubuntu-toolchain-r-test, llvm-toolchain-precise-3.6]}}
- env: [CONDA_GCC=1, COMPILER=g++]
before_install:
- MINICONDA=Miniconda-latest-Linux-x86_64.sh
- wget http://repo.continuum.io/miniconda/$MINICONDA
- bash $MINICONDA -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- which python && python --version
- conda install --yes -c r nlopt
- conda install --yes boost
- '[ "$CONDA_GCC" = "1" ] && conda install --yes gcc || true'
- echo 'Y' | conda install --yes -c psi4 psi4
install:
- ./configure --cxx=$COMPILER --with-nlopt=$HOME/miniconda
- make
script:
- ldd resp2.so
- psi4 input.dat
- cat output.dat