forked from belleau/RJMCMCNucleosomes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
51 lines (37 loc) · 953 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
50
51
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
- libgsl-dev
# - gsl-bin
# - libgsl0-dev
# - libgsl0ldbl
#r_github_packages:
# - Bioconductor-mirror/BiocStyle
bioc_packages:
- BiocStyle
- BiocCheck
# Package dependencies from CRAN not in DESCRIPTION file
#r_binary_packages:
# - covr
r_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()'