mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-21 16:57:25 -06:00
596561b4ce
- 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.
13 lines
251 B
Bash
Executable File
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
|