remove unused travis files

these have not been used for a while. .travis.yml and the files in opm-common/travis/ are in charge
This commit is contained in:
Andreas Lauser 2017-10-13 16:36:22 +02:00
parent 204ef58bb6
commit a1543115aa
4 changed files with 0 additions and 41 deletions

View File

@ -1,8 +0,0 @@
#!/usr/bin/env bash
set -e
pushd . > /dev/null
opm-core/travis/build-opm-core.sh
cd opm-core/build
ctest --output-on-failure
popd > /dev/null

View File

@ -1,10 +0,0 @@
#!/usr/bin/env bash
set -e
pushd . > /dev/null
cd opm-core
mkdir build
cd build
cmake -D SUPERLU_ROOT=../../SuperLU ../
make
popd > /dev/null

View File

@ -1,12 +0,0 @@
#!/usr/bin/env bash
set -e
pushd . > /dev/null
git clone https://github.com/dune-project/dune-istl.git
cd dune-istl
git checkout tags/v2.3.1
mkdir build
cd build
cmake ../
make
popd > /dev/null

View File

@ -1,11 +0,0 @@
#!/usr/bin/env bash
set -e
pushd . > /dev/null
git clone https://github.com/starseeker/SuperLU.git
cd SuperLU
mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=.. -D SUPERLU_BUILD_EXAMPLES=OFF -D SUPERLU_ENABLE_TESTING=OFF ../
make install
popd > /dev/null