forked from R4EPI/sitrep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (36 loc) · 785 Bytes
/
.travis.yml
File metadata and controls
41 lines (36 loc) · 785 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
37
38
39
40
41
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
addons:
apt:
sources:
- sourceline: 'ppa:chris-lea/libsodium'
- sourceline: 'ppa:opencpu/jq'
packages:
- libsodium-dev
- libprotobuf-dev
- libprotoc-dev
- protobuf-compiler
- libudunits2-dev
- libv8-3.14-dev
- libjq-dev
- libgdal-dev
matrix:
include:
- os: linux
r: release
env:
- R_CODECOV=true
- os: linux
r: devel
- os: linux
r: oldrel
- os: osx
osx_image: xcode8.3
warnings_are_errors: true
notifications:
email:
on_success: change
on_failure: change
after_success:
- if [[ "${R_CODECOV}" ]]; then Rscript -e 'covr::codecov()'; fi