-
Notifications
You must be signed in to change notification settings - Fork 53
/
.travis.yml
60 lines (53 loc) · 1.29 KB
/
.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
# based on example at https://github.com/hadley/tibble/blob/master/.travis.yml
# Explanation of .Rbuildignore and other things: http://jtleek.com/protocols/travis_bioc_devel/
# Details for 'language: r' specification: https://docs.travis-ci.com/user/languages/r/
# Online check for syntax of .travis.yml (but doesn't work for R format): http://lint.travis-ci.org/
#language: c
#
#before_install:
# - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
# - chmod 755 ./travis-tool.sh
# - ./travis-tool.sh bootstrap
#install:
# - ./travis-tool.sh install_deps
#script: ./travis-tool.sh run_tests
#
#after_failure:
# - ./travis-tool.sh dump_logs
#
#notifications:
# email:
# on_success: change
# on_failure: change
#
language: r
cache: packages
r_packages:
- utils
- stats
- testthat
- mapproj
- maptools
- deldir
- PBSmapping
- RANN
- colorspace
- RandomFields
- shape
- devtools
- mixtools
- sp
- maps
- mapdata
- TMB
env:
- _R_CHECK_FORCE_SUGGESTS_=false
r_github_packages:
- kaskr/TMB_contrib_R/TMBhelper
- nwfsc-assess/geostatistical_delta-GLMM
warnings_are_errors: false
notifications:
email:
on_success: change
on_failure: change