Skip to content

Commit 1ecd848

Browse files
committed
Added travis status on README.
1 parent 76f87d3 commit 1ecd848

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
sudo: required
2+
3+
env:
4+
- BUILD_TYPE=release
5+
- BUILD_TYPE=debug
6+
7+
services:
8+
- docker
9+
10+
notifications:
11+
email: false
12+
13+
language: C++
14+
15+
before_install:
16+
- docker pull heltai/deal2lkit:$BUILD_TYPE
17+
- docker run -P -v `pwd`:/home/dealii/pi-BEM:rw heltai/deal2lkit:$BUILD_TYPE /bin/sh -c "cd pi-BEM; ./scripts/check_indentation.sh"
18+
19+
script:
20+
- docker run -P -v `pwd`:/home/dealii/pi-BEM:rw heltai/deal2lkit:$BUILD_TYPE /bin/sh -c "mkdir pi-BEM/build; cd pi-BEM/build; cmake -GNinja -DBEM_ENABLE_TESTING=ON ../; ninja"
21+
- docker run -P -v `pwd`:/home/dealii/pi-BEM:rw heltai/deal2lkit:$BUILD_TYPE /bin/sh -c "cd pi-BEM/build; ctest -V"

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Parallel BEM Solver for deal.II
22
===============================
33

4+
[![Build Status](https://travis-ci.org/mathLab/pi-BEM.svg?branch=master)](https://travis-ci.org/mathLab/pi-BEM)
5+
46
After you have compiled your application, you can run
57

68
make test

0 commit comments

Comments
 (0)