-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
60 lines (52 loc) · 875 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: R
sudo: false
cache: packages
matrix:
include:
- os: linux
r: oldrel
- os: linux
r: release
- os: linux
r: devel
- os: osx
r: oldrel
- os: osx
r: release
environment:
# enable remotes
USE_RTOOLS: true
addons:
apt:
sources:
- sourceline: 'ppa:opencpu/imagemagick'
packages:
- libmagick++-dev
- tk
homebrew:
packages:
- php
- imagemagick
- pkg-config
update: true
r_packages:
- igraph
- utils
- mvtnorm
- Matrix
- matrixcalc
- graphics
- knitr
- rmarkdown
- animation
- testthat
- gplots
- devtools
- covr
warnings_are_errors: false
after_success:
- Rscript -e 'library(covr); codecov()'
ignore:
- LICENSE
- vignettes/*html