-
Notifications
You must be signed in to change notification settings - Fork 25
/
.travis.yml
54 lines (43 loc) · 1.42 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
# Sample .travis.yml for R projects
language: r
r:
- devel
cache: packages
before_install:
- R -e 'install.packages("devtools")'
- R -e 'devtools::install_github("Bioconductor/BiocGenerics", ref = "master")'
install:
- R -e 'devtools::install_deps(upgrade = "always")'
- R -e 'install.packages("reshape2")'
- R -e 'install.packages("covr")'
- R -e 'devtools::install_github("RGLab/RProtoBufLib")'
- R -e 'devtools::install_github("RGLab/cytolib")'
script:
- R CMD build . --no-build-vignettes
- R -e 'install.packages(list.files(pattern="*tar.gz"), repos=NULL, type="source")'
- R -e 'devtools::install_github("RGLab/flowViz")'
- R -e 'devtools::install_github("RGLab/ncdfFlow")'
- R -e 'devtools::install_github("RGLab/flowWorkspace")'
- R -e 'devtools::install_github("RGLab/flowWorkspaceData")'
- R -e 'devtools::install_github("RGLab/flowStats")'
- R -e 'devtools::install_github("RGLab/flowClust")'
- R -e 'devtools::install_github("RGLab/ggcyto")'
- R -e 'devtools::install_github("RGLab/openCyto")'
- R -e 'devtools::install_deps(dep = T, upgrade = "always")'
- R CMD build .
- R CMD check *tar.gz
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()'