-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
73 lines (62 loc) · 2.28 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
dist: trusty
sudo: required
# only run examples on linux (mac build stalls)
matrix:
include:
- os: linux
r: release
- os: linux
r: devel
env: R_CODECOV=true
- os: osx
osx_image: xcode9.4
r: release
r_check_args: --no-examples
cache:
packages: true
bioc_required: true
before_install:
- R -e 'install.packages("devtools")'
- R -e 'install.packages("BiocManager")'
- R -e 'devtools::install_github("Bioconductor/BiocGenerics")'
install:
- R -e 'BiocManager::install("Rhdf5lib")'
- R -e 'devtools::install_github("RcppCore/RcppArmadillo")'
- R -e 'devtools::install_github("RcppCore/RcppParallel")'
- R -e 'devtools::install_github("RGLab/RProtoBufLib")'
- R -e 'devtools::install_github("RGLab/cytolib")'
- R -e 'devtools::install_github("RGLab/flowCore")'
- R -e 'devtools::install_github("RGLab/flowWorkspaceData")'
- R -e 'devtools::install_github("RGLab/flowWorkspace")'
- R -e 'devtools::install_github("RGLab/flowStats")'
- R -e 'devtools::install_github("RGLab/openCyto")'
- R -e 'BiocManager::install("flowAI")'
- R -e 'utils::install.packages("EmbedSOM")'
- R -e 'devtools::install_github("DillonHammill/CytoExploreRData")'
- R -e 'devtools::install_github("rstudio/shinythemes")'
- R -e 'devtools::install_github("jrowen/rhandsontable")'
- R -e 'devtools::install_github("rlbarter/superheat")'
- R -e 'devtools::install_github("datastorm-open/visNetwork")'
- R -e 'devtools::install_github("tidyverse/tidyr")'
- R -e 'devtools::install_github("r-lib/mockery")'
- R -e 'devtools::install_github("r-lib/covr")'
- R -e 'devtools::install_github("erichson/rSVD")'
- R -e 'devtools::install_github("exaexa/scattermore")'
- R -e 'devtools::install_github("RGLab/CytoML")'
# Turn off slow processes to allow package caching on build success (speed)
r_build_args: --no-build-vignettes --no-manual
r_check_args: --no-build-vignettes --no-tests --no-vignettes --no-manual --no-examples
warnings_are_errors: false
after_success:
- if [[ "${R_CODECOV}" ]]; then R -e 'covr::codecov()'; fi
env:
global:
- CRAN: http://cran.rstudio.com
- BIOC_USE_DEVEL="FALSE"
addons:
apt:
packages:
- libhdf5-7
- libhdf5-dev