forked from DOI-USGS/loadflex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (25 loc) · 766 Bytes
/
.travis.yml
File metadata and controls
33 lines (25 loc) · 766 Bytes
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
# Defines the options for building the project on linux with Travis-CI
# For more configuration options, see the wiki:
# https://github.com/craigcitro/r-travis/wiki/Porting-to-native-R-support-in-Travis
language: r
cache: packages
sudo: false
warnings_are_errors: true
r_build_args: --no-build-vignettes --no-manual --no-multiarch
r_check_args: --no-build-vignettes --no-manual
repos:
CRAN: https://cran.rstudio.com
GRAN: https://owi.usgs.gov/R
before_script:
- Rscript -e "install.packages('knitr')"
- Rscript -e "install.packages('rmarkdown')"
r_github_packages:
- jimhester/covr
after_success:
- Rscript -e 'covr::coveralls()'
after_failure:
- ./travis-tool.sh dump_logs
notifications:
email:
on_success: change
on_failure: change