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.
11 lines
135 B
Bash
Executable File
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
|