forked from tidyverse/dplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (39 loc) · 817 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Header
language: r
sudo: false
cache: packages
warnings_are_errors: false
#env
env:
global:
- _R_CHECK_FORCE_SUGGESTS_=false
- MAKEFLAGS="-j 2"
#matrix: 3x Linux, 1x OS X
matrix:
include:
- r: release
- r: oldrel
- r: devel
#notifications
notifications:
email:
on_success: change
on_failure: change
#before_script
before_script:
- psql -c 'create database test;' -U postgres
- R -q -e 'install.packages("http://cran.r-project.org/src/contrib/Archive/Rcpp/Rcpp_0.12.7.tar.gz", repos = NULL)'
#after_success
after_success:
- Rscript -e 'covr::codecov()'
# Custom parts:
#r_github_packages
r_github_packages:
- jimhester/covr
#r_packages
r_packages:
#services
services:
#before_install
before_install: