-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
49 lines (46 loc) · 885 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
use_bioc: true
bioc_required: true
sudo: false
os:
- linux
compiler:
- gcc
- clang
addons:
apt:
packages:
- libudunits2-dev # required for units, required for ggforce, required for ggraph
- libgdal-dev # required for sf
- devscripts #required for configure/cleanup
env:
global:
- R_REMOTES_NO_ERRORS_FROM_WARNINGS=true
# don't treat missing suggested packages as error
- _R_CHECK_FORCE_SUGGESTS_=false
# remove linux
- TRAVIS_CXXFLAGS="-Wall -Wextra -pedantic -Werror"
r_packages:
- phyloseq
- data.table
- parallel
- utils
- vegan
- Rtsne
- stringr
- stats
- grDevices
- graphics
- RColorBrewer
- ggplot2
- igraph
- ggraph
- ggrepel
- sf
- sp
- rgdal
- rgeos
- Rcpp
- RcppArmadillo
warnings_are_errors: false