-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
63 lines (54 loc) · 1.12 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Helpful tutorial: http://jtleek.com/protocols/travis_bioc_devel/
language: r
r:
- bioc-release
sudo: true
cache: packages
bioc_required: true
# bioc_use_devel: false
warnings_are_errors: false
r_check_args: '--ignore-vignettes --no-examples'
os:
- linux
- osx
osx_image: xcode12.4
r_binary_packages:
- withr
- knitr
- crayon
- roxygen2
- testthat
- bitops
- DBI
- getopt
- rjson
- tidyr
- dplyr
- rlang
- corrplot
- rmarkdown
- knitr
- lmerTest
bioc_packages:
- BiocParallel
- BiocStyle
- bumphunter
- GenomicRanges
- IRanges
- sesameData
- IlluminaHumanMethylation450kanno.ilmn12.hg19
- IlluminaHumanMethylationEPICanno.ilm10b4.hg19
script:
- |
travis_wait R CMD build .
travis_wait 60 R CMD check coMethDMR*tar.gz
after_script:
- ls -lah
- FILE=$(ls -1t *.tar.gz | head -n 1)
- Rscript -e "library(BiocCheck); BiocCheck(\"${FILE}\")
r_build_args: --no-resave-data
notifications:
email: true
on_success: never # default: change
on_failure: always # default: always