forked from BlueBrain/Brion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (29 loc) · 865 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
notifications:
email:
on_success: never
language: cpp
sudo: false
os:
- osx
env:
global:
- NINJA_STATUS="[%p %u/%t@%o %r]"
- PROJECT_NAME=${PWD##*/}
matrix:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
- brew update
- brew outdated cmake || brew upgrade cmake
# We need to install gcc before hdf5 because otherwise hdf5 will fail.
# The or statement is a hack to ensure we override the existing gcc without
# having an error
- brew install gcc || brew link --overwrite gcc
- brew install cppcheck doxygen ninja
- brew install hdf5
- brew install boost-python
script:
- mkdir $BUILD_TYPE
- cd $BUILD_TYPE
- HDF5_ROOT=/usr/local/opt/hdf5 cmake -GNinja -DCLONE_SUBPROJECTS=ON -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
- ninja all && ninja $PROJECT_NAME-tests && ninja smoketests