forked from osofr/gridisl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
89 lines (75 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#----------------------------------------------------------------
# Travis-CI configuration for R packages
#
# REFERENCES:
# * Travis CI: https://travis-ci.org/
# * native R support: https://github.com/craigcitro/r-travis
# * examples: https://github.com/craigcitro/r-travis/wiki/Porting-to-native-R-support-in-Travis
# * r-builder: https://github.com/metacran/r-builder
# * covr: https://github.com/jimhester/covr
# * Coveralls: https://coveralls.io/
#
# Validate your .travis.yml file at http://lint.travis-ci.org/
#----------------------------------------------------------------
# r_binary_packages:
# - assertthat
# - doParallel
# - data.table
# - dplyr
# - foreach
# - ggplot2
# - magrittr
# - knitr
# - R6
# - Rcpp
# - rmarkdown
# - RUnit
# - speedglm
# - tibble
# - tidyr
# - pander
# - purrr
# before_install:
# - sudo apt-get -qq update
# - sudo apt-get install -y libicu-dev
# - sudo apt-get install -y pandoc
language: r
sudo: false
cache: packages
warnings_are_errors: false
# r_build_args: "--compact-vignettes"
# r_check_args: "--as-cran"
r_build_args: "--no-build-vignettes --no-manual"
r_check_args: "--no-build-vignettes --no-manual --as-cran"
repos:
CRAN: http://cran.rstudio.com
deltarho: http://packages.deltarho.org
os:
- linux
# - osx
# - davidgohel/ggiraph
r_github_packages:
- jimhester/covr
- schloerke/travisDrat
r_packages:
- brokenstick
- face
addons:
apt:
packages:
- libicu-dev
- pandoc
env:
global:
- CRAN: http://cran.rstudio.com
after_success:
- Rscript -e 'print(packageVersion("brokenstick")); print(packageVersion("face"))'
- Rscript -e 'covr::coveralls()'
# - Rscript -e "packagedocs::deploy_travis()"
# - Rscript -e "travisDrat::deploy_drat()"
on_failure:
- ./travis-tool.sh dump_logs
notifications:
email:
on_success: change
on_failure: change