forked from RGLab/MAST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
62 lines (47 loc) · 880 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
52
53
54
55
56
57
58
59
60
61
# Sample .travis.yml for R projects
language: r
r: bioc-devel
dist: trusty
sudo: required
matrix:
include:
- os: linux
r: release
- os: linux
r: devel
env: R_CODECOV=true
r_binary_packages:
- BiocStyle
- lme4
- GGally
- ggplot2
- reshape2
- data.table
- knitr
- stringr
- NMF
- rsvd
- RColorBrewer
before_install:
- R -e 'install.packages("devtools")'
- tlmgr install index
install:
- R -e 'devtools::install_deps(dep = T,type="source")'
bioc_packages:
- GSEABase
- limma
- TxDb.Hsapiens.UCSC.hg19.knownGene
cache:
packages: TRUE
warnings_are_errors: false
use_bioc: true
bioc_required: true
env:
global:
- CRAN: http://cran.rstudio.com
notifications:
email:
on_success: change
on_failure: change
after_success:
- if [[ "${R_CODECOV}" ]]; then R -e 'covr::codecov()'; fi