Skip to content
Snippets Groups Projects
Commit adeca1ad authored by Adrien Crovato's avatar Adrien Crovato
Browse files

Merge branch 'fix_gitlab' into adrien

parents cbab5b03 0512250c
No related branches found
No related tags found
1 merge request!46Msys build
......@@ -4,17 +4,17 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence, they
# will be requested for review when someone opens a pull request.
* @rboman
* @R.Boman
# These owners own a directory and nested subdirectories
/fdtd/ @rboman
/fdtd/ @R.Boman
/flow/ @acrovato
/heat/ @rboman
/mirrors/ @kliegeois
/mrstlnos/ @kliegeois
/sph/ @rboman
/tlnos/ @rboman
/waves/ @rboman
/heat/ @R.Boman
/mirrors/ @Kim.Liegeois
/mrstlnos/ @Kim.Liegeois
/sph/ @R.Boman
/tlnos/ @R.Boman
/waves/ @R.Boman
# You can also use email addresses if you prefer. They'll be
# used to look up users just like we do for commit author
......
# waves
Finite element environment.
Waves is a collection of general utilities and finite element tools for solving various PDE. The code is written in C++ interfaced in python though SWIG, and is developed at the University of Liège.
Waves is a collection of general utilities and finite element tools for solving various PDE. The code is written in C++ interfaced in python through SWIG, and is developed at the University of Liège.
[![Apache License Version 2.0](https://img.shields.io/badge/license-Apache_2.0-green.svg)](LICENSE)
[![Run Status](https://api.shippable.com/projects/5c8e64bca3a3660007d1f4a2/badge?branch=master)](https://app.shippable.com/github/ulgltas/waves/dashboard)
[![Run Status](https://gitlab.uliege.be/am-dept/waves/badges/master/pipeline.svg)](https://gitlab.uliege.be/am-dept/waves/pipelines)
![](/dox/img.png)
......@@ -35,7 +34,7 @@ Additional features:
## Build
Detailed build instructions can be found in the [wiki](https://github.com/ulgltas/waves/wiki/).
Detailed build instructions can be found in the [wiki](https://gitlab.uliege.be/am-dept/waves/wikis/home).
## References
......
dist: xenial
sudo: required
language: python
python:
- "2.7"
branches:
only:
- master
- ci_shippable
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq build-essential
- sudo apt-get install -qq cmake
- sudo apt-get install -qq libgmm++-dev libeigen3-dev
- sudo apt-get install -qq libtbb-dev
- sudo apt-get install -qq libmumps-seq-dev libopenblas-dev
- sudo apt-get install -qq python-dev
- sudo apt-get install -qq libopenmpi-dev python-mpi4py
- sudo apt-get install -qq swig
# vtk 6.2 for ubuntu 16.04
- sudo apt-get install -qq libvtk6.2 libvtk6-dev libvtk6-qt-dev python-vtk6 python-pyqt5
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib
# ubuntu 16.04
- sudo apt-get install libproj-dev
- wget http://gmsh.info/bin/Linux/gmsh-3.0.6-Linux64.tgz
- tar -xzvf gmsh-3.0.6-Linux64.tgz
- sudo ln -s $PWD/gmsh-3.0.6-Linux64/bin/gmsh /usr/bin/gmsh
# add dist-package to pythonpath
- export PYTHONPATH="${PYTHONPATH}:/usr/lib/python2.7/dist-packages"
- export PYTHONPATH="${PYTHONPATH}:/usr/lib/python2.7/lib-dynload"
install:
- mkdir build
- cd build
- cmake -C ../CMake/disable-trilinos.cmake ..
- make
script:
- ctest --verbose
integrations:
notifications:
- integrationName: slack
type: slack
recipients:
- "#waves"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment