1. The build-opm-parser.sh script - which is used by downstream
modules, does not build the Python bindings.
2. The main travis script uses the build-shared script from opm-common.
29 lines
575 B
YAML
29 lines
575 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-shared.sh
|
|
- opm-parser/travis/clone-and-build-ert.sh
|
|
|
|
script: opm-parser/travis/build-and-test-opm-parser.sh
|