opm-simulators/jenkins/run-norne.sh
2016-11-14 11:02:30 +01:00

14 lines
292 B
Bash
Executable File

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