forked from RGLab/MAST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
86 lines (66 loc) · 1.17 KB
/
.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Sample .travis.yml for R projects
language: r
sudo: required
matrix:
include:
- os: linux
r: release
- os: linux
r: devel
env: R_CODECOV=true
cache:
packages: TRUE
before_install:
- R -e 'install.packages("devtools")'
- tlmgr install index
- sudo apt-get update
- sudo apt-get -y install libharfbuzz-dev libfribidi-dev
r_packages:
- data.table
- shiny
- shinythemes
- MASS
- methods
- stats
- utils
- graphics
- grDevices
- tools
- magrittr
- rmarkdown
- robustbase
- ggplot2
- BiocStyle
- lme4
- GGally
- reshape2
- stringr
- NMF
- rsvd
- RColorBrewer
r_github_packages:
- jrowen/rhandsontable
- rlbarter/superheat
- yihui/knitr
- r-lib/covr
- r-lib/testthat
- r-lib/vdiffr
- r-lib/pkgdown
- rstudio/shinytest
use_bioc: true
bioc_packages:
- BiocGenerics
- GSEABase
- limma
- TxDb.Hsapiens.UCSC.hg19.knownGene
warnings_are_errors: false
notifications:
email:
on_success: change
on_failure: change
after_success:
- if [[ "${R_CODECOV}" ]]; then R -e 'covr::codecov()'; fi
env:
global:
- CRAN: http://cran.rstudio.com
- BIOC_USE_DEVEL="FALSE"