-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
33 lines (27 loc) · 834 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
sudo: required
dist: trusty
before_install:
- sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable --yes
- sudo apt-get --yes --force-yes update -qq
- sudo apt-get install --yes libudunits2-dev libproj-dev libgeos-dev libgdal-dev
- sudo add-apt-repository -y ppa:opencpu/jq
- sudo apt-get --yes --force-yes update -qq
- sudo apt-get install libjq-dev
- sudo apt-get install --yes libprotobuf-dev protobuf-compiler libv8-3.14-dev
addons:
apt:
packages:
- libv8-dev
r_packages:
- devtools
matrix:
include:
- r: release
after_success:
- Rscript -e 'covr::codecov()'
- r: release
name: tidyr-devel
before_script: Rscript -e "remotes::install_github('tidyverse/tidyr')"