-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
33 lines (30 loc) · 915 Bytes
/
.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
# Travis doesn't have a fortran build config, so we'll use c as a base and
# create our own environment
language: c
sudo: required
env:
global:
- FC=gfortran-4.8
- OMPI_FC=${FC}
install:
- sudo apt-add-repository --yes ppa:ubuntu-toolchain-r/test
- sudo apt-get update
# sudo apt-get install gcc-4.8 gfortran-4.8 libgomp1 openmpi-bin libopenmpi-dev liblapack-dev libblas-dev
- sudo apt-get install gcc-4.8 gfortran-4.8 liblapack-dev libblas-dev libfftw3-dev
- ls -al
- ./configure
- make distcheck
- cd ..
- pwd
- ls -al
- git clone https://github.com/fireball-dft/fireball-fireball.git
- cd fireball-fireball
- ./configure --enable-THEORY=HARRIS
- make distcheck
- ./configure --enable-THEORY=DOGS
- make distcheck
script: true
# make check PFUNIT=pfunit
after_success: true
# find .
# codecov --gcov-exec=gcov-4.8