forked from VirtualPlanetaryLaboratory/vplanet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (33 loc) · 796 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
30
31
32
33
34
35
36
37
38
39
40
41
42
dist: trusty
language: c
compiler:
gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- doxygen
- doxygen-doc
- lcov
matrix:
include:
- os: linux
install:
#- git lfs pull
- source .ci/travis.sh
cache:
directories:
- $HOME/miniconda
- .git/lfs
git:
# https://github.com/travis-ci/travis-ci/issues/8787#issuecomment-394202791
lfs_skip_smudge: true
script:
- make coverage
after_success:
#- if [ "$TRAVIS_BRANCH" = "master" ]; then source .ci/build-docs.sh; fi
- if [ "$TRAVIS_BRANCH" = "master" ]; then bash <(curl -s https://codecov.io/bash); fi
- source .ci/build-docs.sh
#bash <(curl -s https://codecov.io/bash);