-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
48 lines (37 loc) · 982 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
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:
- libmpfr-dev
# Binaries from Michael Rutter's ppa
#r_binary_packages:
# - testthat
# - zoo
# - xts
# Done via install.packages
r_packages:
- Rmpfr
- plm
# Install the bleeding edge version of a package from github (eg to pick
# up a not-yet-released bugfix)
r_github_packages:
- braverock/PerformanceAnalytics
- braverock/FactorAnalytics
# - r-lib/covr
notifications:
slack:
rooms:
- r-finance-gsoc:OZQuYlCU7iZVwVEApDtkqAY7#01-expected-returns-factor-analytics
on_success: change # default: always
on_failure: always # default: always
# after_success:
# - travis_wait 30 Rscript -e 'covr::codecov()'