-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
46 lines (35 loc) · 1.06 KB
/
.travis.yml
File metadata and controls
46 lines (35 loc) · 1.06 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Sample .travis.yml for R projects.
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki - deprecated
# http://jtleek.com/protocols/travis_bioc_devel/ - deprecated
#https://github.com/r-lib/usethis/issues/420
#should use the biocViews: tag in the DESCRIPTION file instead.
#Unsure how to do this, so just see if I can force it for now using the bioc_packages: field below
language: R
r: bioc-release
warnings_are_errors: false
#Im not uploading the primary data here- so cannot build the vignettes.
r_build_args:
- "--no-build-vignettes"
r_check_args:
- "--as-cran --no-build-vignettes"
cache:
directories:
- $TRAVIS_BUILD_DIR/packrat/src
- $TRAVIS_BUILD_DIR/packrat/lib
packages: true
bioc_packages:
- Biostrings
- IRanges
- Rsamtools
- GenomicRanges
- S4Vectors
notifications:
recipients:
- jennyl.smith12@gmail.com
email:
on_success: change
on_failure: change