-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
35 lines (27 loc) · 919 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
language: r
r: devel
#use_bioc: true
#bioc_required: true
#r: bioc-devel
os:
- linux
# - osx
# Problem with osx that requires a lot of LaTeX packages
# including authblk "not present in repository" Travis CI #75.2
# safelist
#branches:
# only:
# - master
# - 2xx
sudo: false
cache: packages
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tlmgr install bera nowidow parnotes marginfix; fi
#- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo tlmgr install authblk beramono caption changepage color enumitem etoolbox fancyhdr fontenc footmisc framed geometry graphicx hyperref ifthen marginfix mathtools nowidow parnotes parskip placeins ragged2e soul titlesec titletoc xstring; fi
warnings_are_errors: false
r_github_packages:
- jimhester/covr
r_build_args: --keep-empty-dirs --no-resave-data
r_check_args: --no-vignettes --timings
after_success:
- Rscript -e 'covr::codecov()'