From a1543115aad1eea076623169cb53425b12bcf842 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Fri, 13 Oct 2017 16:36:22 +0200 Subject: [PATCH] remove unused travis files these have not been used for a while. .travis.yml and the files in opm-common/travis/ are in charge --- travis/build-and-test-opm-core.sh | 8 -------- travis/build-opm-core.sh | 10 ---------- travis/clone-and-build-dune-istl.sh | 12 ------------ travis/clone-and-build-superlu.sh | 11 ----------- 4 files changed, 41 deletions(-) delete mode 100755 travis/build-and-test-opm-core.sh delete mode 100755 travis/build-opm-core.sh delete mode 100755 travis/clone-and-build-dune-istl.sh delete mode 100755 travis/clone-and-build-superlu.sh diff --git a/travis/build-and-test-opm-core.sh b/travis/build-and-test-opm-core.sh deleted file mode 100755 index 2810c7d4..00000000 --- a/travis/build-and-test-opm-core.sh +++ /dev/null @@ -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 diff --git a/travis/build-opm-core.sh b/travis/build-opm-core.sh deleted file mode 100755 index fad3f8ed..00000000 --- a/travis/build-opm-core.sh +++ /dev/null @@ -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 diff --git a/travis/clone-and-build-dune-istl.sh b/travis/clone-and-build-dune-istl.sh deleted file mode 100755 index 2ca08304..00000000 --- a/travis/clone-and-build-dune-istl.sh +++ /dev/null @@ -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 diff --git a/travis/clone-and-build-superlu.sh b/travis/clone-and-build-superlu.sh deleted file mode 100755 index 77affea7..00000000 --- a/travis/clone-and-build-superlu.sh +++ /dev/null @@ -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