-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
40 lines (31 loc) · 1.06 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
# Sample .travis.yml for R projects
language: r
r: bioc-devel
dist: xenial
cache: packages
warnings_are_errors: false
sudo: required
bioc_required: true
before_install:
- R -e 'install.packages("devtools")'
- R -e 'devtools::install_github("Bioconductor/BiocGenerics", ref = "master")'
install:
- R -e 'devtools::install_github("RGLab/cytolib",ref="trunk")'
- R -e 'devtools::install_github("RGLab/flowCore", ref="trunk")'
- R -e 'devtools::install_github("RGLab/flowWorkspaceData", ref="trunk")'
- R -e 'devtools::install_github("RGLab/flowWorkspace", ref="trunk")'
- R -e 'devtools::install_github("RGLab/flowStats", ref="trunk")'
- R -e 'devtools::install_github("RGLab/flowViz", ref="trunk")'
- R -e 'devtools::install_github("RGLab/ncdfFlow", ref="trunk")'
- R -e 'devtools::install_github("RGLab/openCyto", ref="trunk")'
- R -e 'devtools::install_deps(dep = T, upgrade = "always")'
env:
global:
- CRAN: http://cran.rstudio.com
-apt_packages:
- - libhdf5-7
- - libhdf5-dev
notifications:
email:
on_success: change
on_failure: change