forked from r-lidar/lidR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (39 loc) · 803 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
r: bioc-devel
bioc_required: true
bioc_use_devel: true
sudo: required
dist: trusty
cache: packages
before_install:
- sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable --yes
- sudo apt-get --yes --force-yes update -qq
apt_packages:
- libgeos-c1
- libgeos-c1v5
- libgdal20
- libspatialite-dev
- libspatialite5
- libnetcdf-dev
- udunits-bin
- libudunits2-dev
- netcdf-bin
- libcurl4-gnutls-dev
- libdap-dev
- libgdal1h
- libhdf5-7
- libhdf5-dev
- libhdf5-serial-dev
- libfftw3-3
- libfftw3-dev
- libtiff5-dev
- libudunits2-dev
- libproj-dev
- libgdal-dev
bioc_packages:
- EBImage
r_packages:
- covr
after_success:
- Rscript -e 'library(covr);codecov()'