Files
opm-common/travis/build-opm-parser.sh
Joakim Hove fc15a7b7af Changes in travis configuration
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.
2016-03-22 10:12:27 +01:00

11 lines
135 B
Bash
Executable File

#!/usr/bin/env bash
set -e
pushd . > /dev/null
cd opm-parser
mkdir build
cd build
cmake -DBUILD_TESTING=OFF ../
make
popd > /dev/null