opm-simulators/jenkins/run-norne.sh
Arne Morten Kvarving 596561b4ce Use shared copy of opm-data when possible
- The user can supply OPM_DATA_ROOT directly and this
is used.
- The user can supply OPM_DATA_ROOT_PREDEFINED and
this is used unless there is a PR against opm-data specified in the
trigger.

This is used to minimize the network traffic on the jenkins resource.
opm-data is updated nightly, and this nightly updated copy is used
unless otherwise instructed.

This commit also enables the opm-data integration tests on all runs.
2016-04-11 12:18:54 +02:00

13 lines
251 B
Bash
Executable File

#!/bin/bash
pushd .
cd deps/opm-data
# Run the norne case
cd norne
$WORKSPACE/serial/build-opm-simulators/bin/flow deck_filename=NORNE_ATW2013.DATA output_dir=OPM
test $? -eq 0 || exit 1
PATH=$WORKSPACE/serial/install/bin:$PATH ./plotwells.sh
popd