forked from ArnaudDroitLab/RJMCMCNucleosomes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
40 lines (30 loc) · 828 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
language: r
sudo: required
# R version
r: bioc-devel
# Package caching only makes sense for the release versions.
cache: packages
# Packages from Bioconductor needed
bioc_required: true
# Be strict when checking package
warnings_are_errors: true
r_build_args: "--no-manual --no-resave-data --keep-empty-dirs"
r_check_args: "--no-build-vignettes --no-manual --timings"
# Package dependencies installed using apt-get
addons:
apt:
packages:
- gsl-bin
- libgsl0-dev
- libgsl0ldbl
r_github_packages:
- Bioconductor-mirror/BiocStyle
# Package dependencies from CRAN not in DESCRIPTION file
r_binary_packages:
- covr
# To compile C++ code
before_script:
- Rscript -e 'library(Rcpp); Rcpp::compileAttributes()'
# To send info to codecov
after_success:
- Rscript -e 'library(covr); codecov()'