forked from RGLab/flowCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (30 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
34
35
36
37
38
39
# Sample .travis.yml for R projects
language: r
r:
- devel
cache: packages
before_install:
- R -e 'install.packages("devtools")'
- R -e 'devtools::install_github("RGLab/ggcyto", ref = "trunk")'
- R -e 'install.packages("reshape2")'
- R -e 'install.packages("covr")'
- R -e 'devtools::install_github("RGLab/flowClust", ref = "bioc")'
- R -e 'install.packages("openCyto")'
- tlmgr install index
install:
- R -e 'devtools::install_deps(dep = T,type="binary")'
group: stable
warnings_are_errors: false
sudo: required
bioc_required: true
env:
global:
- CRAN: http://cran.rstudio.com
notifications:
email:
on_success: change
on_failure: change
r_github_packages:
- r-lib/covr
after_success:
- Rscript -e 'library(covr); codecov()'