forked from JonathanShor/DoubletDetection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (26 loc) · 776 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
sudo: true
cache: packages
before_install:
- sudo add-apt-repository -y ppa:nschloe/hdf5-backports
- sudo apt-get update
- sudo apt-get install -y libhdf5-dev
- h5cc -showconfig
- Rscript -e 'source("https://bioconductor.org/biocLite.R");biocLite(c("multtest", "survival", "MASS"), ask = FALSE)'
addons:
apt:
update: true
use_bioc: true
r_packages:
- covr
- hdf5r
# enable remotes
r_github_packages:
- TomKellyGenetics/Rphenograph
- TomKellyGenetics/heatmap.2x
after_success:
- Rscript -e 'library(covr); codecov()'
r_build_args: --no-build-vignettes --no-manual --no-resave-data
r_check_args: --no-build-vignettes --no-manual
warnings_are_errors: false