-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
63 lines (51 loc) · 1.62 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
language:
- cpp
cache:
ccache: true
directories:
- $HOME/downloads
addons:
apt:
packages:
- hdf5-tools
- libhdf5-dev
- hdf5-helpers
matrix:
include:
- os: linux
- os: osx
branches:
only:
- master
before_install:
# Travis machines have 2 cores
- JOBS=2
############################################################################
# Handle caching of downloaded files
############################################################################
- export DL_DIR=$HOME/downloads
- curl -fsSkL https://raw.githubusercontent.com/openmeeg/ci-utils/master/travis/travis_tools.sh > x.sh && source ./x.sh
############################################################################
# Install a recent CMake
############################################################################
- CMAKE_VERSION=3.10.1
- curl -fsSkL https://raw.githubusercontent.com/openmeeg/ci-utils/master/travis/install_cmake.sh > x.sh && source ./x.sh
############################################################################
# Install HDF5
############################################################################
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
rm -rf /usr/local/include/c++;
brew install hdf5;
fi
script:
- cd ${TRAVIS_BUILD_DIR}
- mkdir -p build && cd build
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then echo $LD_LIBRARY_PATH; fi
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then echo $DYLD_LIBRARY_PATH; fi
- echo "cmake .. ${CMAKE_OPTIONS}"
- cmake .. ${CMAKE_OPTIONS}
- cmake --build .
# - ctest -v .
after_success:
notifications:
email: false