-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
56 lines (53 loc) · 1.22 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
#----------------------------------------------------------------
# Travis-CI configuration for R packages
#
# REFERENCES:
# * Travis CI: https://docs.travis-ci.com/user/languages/r
# * covr: https://github.com/jimhester/covr
#
# Validate your .travis.yml file at http://lint.travis-ci.org/
#----------------------------------------------------------------
language: r
sudo: required
cache: packages
warnings_are_errors: false
r_check_args: --as-cran
latex: false
before_install:
- brew update
- brew install gsl
before_install:
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
brew update;
brew install gsl;
fi
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
sudo apt-get -qq update;
sudo apt-get install -y libgsl0-dev;
fi
matrix:
include:
- os: linux
r: oldrel
- os: linux
r: release
r_github_packages:
- jimhester/covr
after_success:
- Rscript -e 'covr::codecov(quiet=FALSE)'
env: NB='w/ covr' ## Just a label
- os: linux
r: devel
- os: osx
r: oldrel
- os: osx
r: release
bioc_packages:
- BiocInstaller
- BiocStyle
repos:
Rforge: http://R-Forge.R-project.org
notifications:
email:
on_success: change
on_failure: change