29 lines
568 B
YAML
29 lines
568 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- boost-latest
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- libboost1.55-all-dev
|
|
- gcc-4.8
|
|
- g++-4.8
|
|
- gfortran-4.8
|
|
- liblapack-dev
|
|
|
|
install:
|
|
- export CXX="g++-4.8" CC="gcc-4.8" FC="gfortran-4.8"
|
|
- cd ..
|
|
|
|
- git clone https://github.com/OPM/opm-common.git
|
|
- git clone https://github.com/OPM/opm-data.git
|
|
|
|
- opm-common/travis/build-opm-common.sh
|
|
- opm-parser/travis/clone-and-build-ert.sh
|
|
|
|
script: opm-parser/travis/build-and-test-opm-parser.sh
|