Skip to content

Commit

Permalink
Merge pull request #22 from awvwgk/travis-ci
Browse files Browse the repository at this point in the history
Add Travis-CI build instructions
  • Loading branch information
aradi authored Jul 7, 2020
2 parents a9a55b8 + 3e66049 commit 88244ca
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
os: linux
dist: bionic

language: python
python: 3.7


env:
- BUILD_SHARED_LIBS=false
- BUILD_SHARED_LIBS=true

addons:
apt:
packages:
- cmake
- gfortran
- libblas-dev
- liblapack-dev
- libopenmpi-dev

install:
- pip install fypp

script:
- mkdir -p _build && pushd _build && cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$PWD/install -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} .. && make -j all install && popd

0 comments on commit 88244ca

Please sign in to comment.