Merge pull request #2836 from akva2/update_data_base
added: tell update_data where to start branch from
This commit is contained in:
commit
e65639a2e6
@ -33,7 +33,7 @@ else
|
||||
then
|
||||
cp $OPM_TESTS_ROOT $WORKSPACE/deps/opm-tests -R
|
||||
pushd $WORKSPACE/deps/opm-tests
|
||||
echo "opmt-tests-revision: `git rev-parse HEAD`"
|
||||
echo "opm-tests-revision: `git rev-parse HEAD`"
|
||||
popd
|
||||
fi
|
||||
fi
|
||||
|
@ -22,6 +22,7 @@ upstreamRev[opm-grid]=master
|
||||
upstreamRev[opm-models]=master
|
||||
upstreamRev[opm-simulators]=master
|
||||
upstreamRev[opm-upscaling]=master
|
||||
upstreamRev[opm-tests]=master
|
||||
|
||||
# Setup revision tables
|
||||
parseRevisions
|
||||
@ -43,6 +44,12 @@ done
|
||||
|
||||
# Do the commit
|
||||
export REASON
|
||||
if [ "${upstreamRev[opm-tests]}" == "master" ]
|
||||
then
|
||||
export BRANCH_BASE=origin/master
|
||||
else
|
||||
export BRANCH_BASE=${upstreamRev[opm-tests]}
|
||||
fi
|
||||
export BRANCH_NAME
|
||||
$WORKSPACE/deps/opm-simulators/tests/update_reference_data.sh $OPM_TESTS_ROOT $WORKSPACE/$configuration/build-opm-simulators $WORKSPACE/$configuration/install/bin/convertECL
|
||||
if test $? -eq 5
|
||||
|
Loading…
Reference in New Issue
Block a user