Add Travis config file
authorJulien Schueller <schueller@phimeca.com>
Sat, 4 Jun 2016 06:32:40 +0000 (08:32 +0200)
committerJulien Schueller <schueller@phimeca.com>
Sat, 4 Jun 2016 07:24:29 +0000 (09:24 +0200)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..6795a2e
--- /dev/null
@@ -0,0 +1,18 @@
+language: cpp
+
+addons:
+  apt:
+    sources:
+      - george-edison55-precise-backports # cmake
+    packages:
+      - cmake
+      - cmake-data
+      - gfortran
+
+os:
+  - linux
+  - osx
+
+script:
+  - cmake -DCMAKE_INSTALL_PREFIX=~/.local -DLAPACKE=ON -DCBLAS=ON .
+  - make install -j2 && ctest -j2 --output-on-failure --timeout 100