-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.travis.yml
53 lines (43 loc) · 915 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
language: r
dist: trusty
cache: packages
sudo: required
group: deprecated-2017Q2
addons:
apt:
packages:
- libgdal-dev
- libproj-dev
- r-cran-rjava
- libv8-dev
r_binary_packages:
- rgdal
# Install zoon from Github
r_github_packages:
- zoonproject/zoon
# Install devtools to allow travis to work.
r_packages:
- devtools
## After success update the code coverage
after_success:
- Rscript -e 'library(covr);codecov()'
# Warnings don't fail build
warnings_are_errors: false
## Email notification if the package pass status changes
notifications:
email:
recipients:
on_success: change
on_failure: change
## Set up the matrix of different runs
env:
global:
- R_MAX_NUM_DLLS=1000
matrix:
- r: release
not_cran: true
r_check_args: "--no-manual"
- r: devel
not_cran: true
r_check_args: "--no-manual"