forked from tidyverse/dplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (44 loc) · 1.05 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: R
sudo: false
dist: trusty
cache: packages
latex: false
fortran: false
jobs:
include:
- r: devel
- os: osx
- r: release
after_success:
- Rscript -e 'covr::codecov()'
before_cache:
- Rscript -e 'remotes::install_cran("pkgdown")'
- Rscript -e 'remotes::install_github("tidyverse/tidytemplate")'
deploy:
provider: script
script: Rscript -e 'pkgdown::deploy_site_github(verbose = TRUE)'
skip_cleanup: true
- r: 3.4
- r: 3.3
- r: 3.2
warnings_are_errors: false
# - r: release
# env:
# - DEVEL_PACKAGES=true
# r_github_packages:
# - RcppCore/Rcpp
# - r-lib/rlang
# - tidyverse/tibble
# - tidyverse/tidyselect
matrix:
fast_finish: true
# allow_failures:
# - env: DEVEL_PACKAGES=true
env:
global:
- _R_CHECK_FORCE_SUGGESTS_=false
- MAKEFLAGS="-j 2"
- TRAVIS_CXXFLAGS="-Wall -Wextra -pedantic -Werror"
- R_REMOTES_NO_ERRORS_FROM_WARNINGS=true
- _R_CHECK_SYSTEM_CLOCK_=FALSE