forked from braverock/quantstrat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
60 lines (50 loc) · 976 Bytes
/
.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
language: r
dist: bionic
# need sudo
sudo: true
# cache packages because devtools is a beast
cache: packages
# Be strict when checking our package
warnings_are_errors: true
# don't build the vignette
r_build_args: "--no-build-vignettes"
r_check_args: "--no-build-vignettes --ignore-vignettes --as-cran"
# System dependencies
#apt_packages:
# - libcurl4-openssl-dev
# - libxml2-dev
# Binaries from Michael Rutter's ppa
r_binary_packages:
- magrittr
- ggplot2
- plyr
- Rcpp
- RCurl
- shiny
- stringr
- stringi
- MASS
- RColorBrewer
- utf8
- digest
- colorspace
- curl
- openssl
- git2r
- foreach
- iterators
- RJSONIO
- yaml
- testthat
- rgl
# Done via install.packages
#r_packages:
# Install the bleeding edge version of a package from github (eg to pick
# up a not-yet-released bugfix)
r_github_packages:
- joshuaulrich/xts
- braverock/blotter
- ramnathv/rCharts
- r-lib/covr
after_success:
- travis_wait 30 Rscript -e 'covr::codecov()'