Skip to content

Commit

Permalink
Add Travis-CI build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk committed Jul 6, 2020
1 parent a9a55b8 commit 30dabc3
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 -DMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} .. && make -j

0 comments on commit 30dabc3

Please sign in to comment.