Added Travis support

This commit is contained in:
Jean-Paul Balabanian
2016-02-08 06:53:59 +01:00
parent 279799ee80
commit ab3ea52384
6 changed files with 81 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#!/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