-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (32 loc) · 737 Bytes
/
Copy path.travis.yml
File metadata and controls
36 lines (32 loc) · 737 Bytes
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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: R
cache: packages
matrix:
include:
- r: devel
- 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: oldrel
- r: 3.3
- r: 3.2
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
before_install: |
mkdir ~/.R
cat <<EOF > ~/.R/Makevars
CXX=g++-4.9
CXX1X=g++-4.9
CXX1XSTD=-std=c++11