-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
77 lines (66 loc) · 1.35 KB
/
.travis.yml
File metadata and controls
77 lines (66 loc) · 1.35 KB
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
branches:
only:
- master
env:
global:
- RGL_USE_NULL=TRUE
language: r
sudo: required
cache: packages
cran: https://cran.rstudio.com
warnings_are_errors: false
r_build_args: '--no-manual'
r_check_args: '--no-build-vignettes --no-manual'
r:
- bioc-release
before_install:
- sudo apt-get update
- sudo apt-get -y install libmagick++-dev
- sudo apt-get -y install librsvg2-dev
- sudo apt-get -y install libgit2-dev
- sudo apt-get -y install libwebp-dev
- sudo apt-get -y install libpoppler-cpp-dev
- sudo apt-get -y install libtesseract-dev
- sudo apt-get -y install libleptonica-dev
- sudo apt-get -y install tesseract-ocr-eng
- sudo apt-get -y install libfftw3-dev
- sudo apt-get -y install cargo
r_packages:
- gert
- devtools
- covr
- BiocManager
- elasticnet
- sparsepca
- magick
- Matrix
- matrixStats
- coop
- RSpectra
r_github_packages:
- r-lib/sessioninfo
- r-lib/covr
bioc_packages:
- BiocStyle
- BiocCheck
- BiocGenerics
- BiocParallel
- S4Vectors
- splatter
- SingleCellExperiment
- Rhdf5lib
- HDF5Array
- DelayedArray
- DelayedMatrixStats
- sparseMatrixStats
- MatrixGenerics
- ScaledMatrix
after_success:
## coverage
- travis_wait 60 Rscript -e "covr::codecov()"
- R CMD BiocCheck .
on_failure:
- "./travis-tool.sh dump_logs"
notifications:
email:
on_success: change