-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (31 loc) · 742 Bytes
/
.travis.yml
File metadata and controls
37 lines (31 loc) · 742 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
34
35
36
37
language: r
r:
- oldrel
- release
# - devel
#cache: packages
# add tcltk support on Ubuntu; add necessary packages for rgl package.
addons:
apt:
packages:
- tcl8.6
- tk8.6
- libglu1-mesa-dev
- mesa-common-dev
# for the tcltk package, we need some special treatment (as the Travis environment has no display)
# see https://stackoverflow.com/a/55674747 or https://benlimmer.com/2019/01/14/travis-ci-xvfb/
services:
- xvfb
warnings_are_errors: false
# Binary packages are not there yet - reenable later.
#r_binary_packages:
# - rcppeigen
# - lavaan
# - ggplot2
# - lattice
# - plyr
# - testthat
# - dplyr
after_success:
- Rscript -e 'covr::codecov()'
# see https://docs.travis-ci.com/user/languages/r/