-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
64 lines (52 loc) · 973 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
sudo: required
cache: packages
latex: false
fortran: false
#r_check_args: '--as-cran'
#r_build_args: '--no-build-vignettes'
r_check_args: '--as-cran --ignore-vignettes'
brew_packages:
- libgit2
r:
- release
- devel
os:
- linux
- osx
r_packages:
- covr
- devtools
- dplyr
- ggplot2
- microbenchmark
- rmarkdown
- testthat
- jsonlite
- purrr
branches:
only:
- master
matrix:
fast_finish: true
exclude:
- os: osx
r: devel
env:
global:
- _R_CHECK_FORCE_SUGGESTS_=false
- MAKEFLAGS="-j 2"
- TRAVIS_CXXFLAGS="-Wall -Wextra -pedantic -Werror"
- R_REMOTES_NO_ERRORS_FROM_WARNINGS=true
repos:
CRAN: https://cloud.r-project.org
after_success:
- Rscript -e 'covr::codecov()'
notifications:
email:
recipients:
on_success: change
on_failure: always