-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
54 lines (46 loc) · 985 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
#
language: r
# Versions of R to build on
r:
- oldrel
- release
- devel
# Operating systems to build on
os:
- linux
- osx
# Linux options
sudo: false
dist: trusty
cache: packages
# 1. Apparently R-devel for OSX is a pain on most CI platforms, so I'm excluding
# it from our builds. See below for more details on the problem
# https://community.rstudio.com/t/r-devel-error-on-travis-ci-and-appveyor/2708
# moreover, I am excluding R-oldrel for osx, and testing it using intalling
# libgit2 through brew_packages.
matrix:
exclude:
- os: osx
r: devel
- os: osx
r: oldrel
include:
os: osx
osx_image: xcode8.3
brew_packages: libgit2
notifications:
email:
- levisc8@gmail.com
- brad.ochocki@gmail.com
- aldo.compagnoni@gmail.com
# safelist
branches:
only:
- master
- api
script:
- |
R CMD build .
travis_wait 40 R CMD check popler*.tar.gz
after_success:
- travis_wait 40 Rscript -e 'covr::codecov()'