mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-21 16:57:25 -06:00
4f779b7a01
also unifies build.sh and build-pr.sh and gets rid of build-opm-simulators.sh
13 lines
267 B
Bash
Executable File
13 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd .
|
|
cd deps/opm-data
|
|
|
|
# Run the norne case
|
|
cd norne
|
|
$WORKSPACE/$configuration/build-opm-simulators/bin/flow deck_filename=NORNE_ATW2013.DATA output_dir=OPM
|
|
test $? -eq 0 || exit 1
|
|
PATH=$WORKSPACE/$configuration/install/bin:$PATH ./plotwells.sh
|
|
|
|
popd
|